Skip to content

Commit 383cd90

Browse files
author
v-masebo
committed
changes per @TerryGLee
1 parent 8c1d1b3 commit 383cd90

5 files changed

+10
-8
lines changed

docs/vsto/office-projects-in-the-visual-studio-environment.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,10 @@ ms.workload:
9999

100100
The document has an associated code file. The code file contains a generated *host item* class that represents the document. For more information, see [Document host item](../vsto/document-host-item.md).
101101

102-
### Design mode vs. run time mode
102+
### Design mode vs. runtime mode
103103
When a document is open in the Visual Studio environment, it is always in *design mode*. Some tasks, such as dragging a host control to the document surface, can be performed only design mode.
104104

105-
To view the document in *run-time mode*, you must open the application and the document outside Visual Studio. You can also build and run the project, which will automatically open the document and application outside Visual Studio.
105+
To view the document in *runtime mode*, you must open the application and the document outside Visual Studio. You can also build and run the project, which will automatically open the document and application outside Visual Studio.
106106

107107
## Code Editor
108108
The Code Editor enables you to view and modify the visible code files in your solution. These files contain the code that defines the behavior of your solution.
@@ -112,7 +112,7 @@ ms.workload:
112112
## Properties window
113113
The **Properties** window displays properties for project items that are selected in **Solution Explorer**, and for UI elements that are selected in the designer, such as controls or the document in a document-level project. Some properties are specific to the application and document, and some properties are the same across all projects.
114114

115-
## Data sources window
115+
## Data Sources window
116116
You can use the **Data Sources** window in document-level Office projects to drag a data source onto your document and create a control that is bound to the data source. For more information, see [Bind controls to data in Visual Studio](/visualstudio/data-tools/bind-controls-to-data-in-visual-studio).
117117

118118
## See also

docs/vsto/office-solutions-development-overview-vsto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ ms.workload:
7070

7171
- [Office primary interop assemblies](../vsto/office-primary-interop-assemblies.md)
7272

73-
## Run Microsoft VSTO Office solutions on end user computers
73+
## Run Microsoft VSTO Office solutions on end-user computers
7474
When you create a VSTO Office solution, consider how the deployment requirements might affect your development choices.
7575

7676
### Deployment options

docs/vsto/one-or-more-properties-in-the-dot-ofs-file-are-not-valid-for-the-message-class-selected.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ ms.workload:
1818
---
1919
# One or more properties in the .ofs file are not valid for the message class selected
2020
This error appears when you import a form region that is designed in Outlook, but one or more fields on the form region are not compatible with the message classes that you select on the final page of the **New Form Region** wizard.
21+
22+
For example, you might select **Task (IPM.Task)** on the final page of the **New Form Region** wizard. If the form region contains a **Business Address** field, you will receive this error because a task does not have a business address. Therefore, the **Business Address** field is not compatible with the `IPM.Task` message class.
2123

2224
You might select **Task (IPM.Task)** on the final page of the **New Form Region** wizard. If the form region contains a **Business Address** field, you will receive this error because a task does not have a business address. Therefore, the **Business Address** field is not compatible with the `IPM.Task` message class.
2325

24-
### To correct this error
26+
## To correct this error
2527

2628
- On the final page of the **New Form Region** wizard, select a message class that is compatible with the fields on the form region.
2729

docs/vsto/outlook-object-model-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ ms.workload:
5959

6060
- The <xref:Microsoft.Office.Interop.Outlook._Application.Inspectors%2A> property, which you can use to access the windows that display the contents of a single item, such as an e-mail message or meeting request.
6161

62-
To get an instance of the <xref:Microsoft.Office.Interop.Outlook.Application> object, use the Application field of the `ThisAddIn` class in your project. For more information, see [Program VSTO add-ins](../vsto/programming-vsto-add-ins.md).
62+
To get an instance of the <xref:Microsoft.Office.Interop.Outlook.Application> object, use the Application field of the `ThisAddIn` class in your project. For more information, see [Program VSTO Add-ins](../vsto/programming-vsto-add-ins.md).
6363

6464
> [!NOTE]
6565
> To help avoid security warnings when you use properties and methods that are blocked by the Outlook object model guard, get Outlook objects from the Application field of the `ThisAddIn` class. For more information, see [Specific security considerations for Office solutions](../vsto/specific-security-considerations-for-office-solutions.md).

docs/vsto/powerpoint-solutions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ ms.workload:
7474
[Walkthrough: Create your first VSTO Add-in for PowerPoint](../vsto/walkthrough-creating-your-first-vsto-add-in-for-powerpoint.md)
7575
[Get started programming VSTO Add-ins](../vsto/getting-started-programming-vsto-add-ins.md)
7676
[Office solutions development overview &#40;VSTO&#41;](../vsto/office-solutions-development-overview-vsto.md)
77-
[Architecture of VSTO add-ins](../vsto/architecture-of-vsto-add-ins.md)
77+
[Architecture of VSTO Add-ins](../vsto/architecture-of-vsto-add-ins.md)
7878
[How to: Create Office projects in Visual Studio](../vsto/how-to-create-office-projects-in-visual-studio.md)
79-
[Program VSTO Add-Ins](../vsto/programming-vsto-add-ins.md)
79+
[Program VSTO Add-ins](../vsto/programming-vsto-add-ins.md)
8080
[Write code in Office solutions](../vsto/writing-code-in-office-solutions.md)
8181
[Office primary interop assemblies](../vsto/office-primary-interop-assemblies.md)
8282
[Office UI customization](../vsto/office-ui-customization.md)

0 commit comments

Comments
 (0)