Skip to content

Commit b51696e

Browse files
author
Linda Caputo
committed
Unbolded window names
1 parent 0dbaee1 commit b51696e

File tree

103 files changed

+207
-218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+207
-218
lines changed

Language/Concepts/Forms/add-a-watch-expression.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A watch expression is an expression you define to be monitored in the **Watch**
2020

2121
1. On the **Debug** menu, click **Add Watch**. The **Add Watch** dialog box is displayed.
2222

23-
2. If an [expression](../../Glossary/vbe-glossary.md#expression) is already selected in the **Code** window, it is automatically displayed in the **Expression** box. If no expression is displayed, enter the expression you want to evaluate. The expression can be a [variable](../../Glossary/vbe-glossary.md#variable), a [property](../../Glossary/vbe-glossary.md#property), a function call, or any other valid expression.
23+
2. If an [expression](../../Glossary/vbe-glossary.md#expression) is already selected in the Code window, it is automatically displayed in the **Expression** box. If no expression is displayed, enter the expression you want to evaluate. The expression can be a [variable](../../Glossary/vbe-glossary.md#variable), a [property](../../Glossary/vbe-glossary.md#property), a function call, or any other valid expression.
2424

2525
3. Select a [module](../../Glossary/vbe-glossary.md#module) or [procedure](../../Glossary/vbe-glossary.md#procedure) context in the **Context** group to select the range for which the expression will be evaluated.
2626

Language/Glossary/vbe-glossary.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ A 4-byte integer ranging in value from -2,147,483,648 to 2,147,483,647. The ampe
456456

457457
## margin indicator
458458

459-
An icon displayed in the **Margin Indicator** bar in the **Code** window. Margin indicators provide visual cues during code editing.
459+
An icon displayed in the **Margin Indicator** bar in the Code window. Margin indicators provide visual cues during code editing.
460460

461461

462462
## MDI child
@@ -545,7 +545,7 @@ A combination of code and data that can be treated as a unit, for example, a con
545545

546546
## Object box
547547

548-
A list box at the upper-left corner of the **Code** window that lists the form and controls in the form to which the code is attached, or a list box located at the top of the **Properties** window that lists the form and its controls.
548+
A list box at the upper-left corner of the Code window that lists the form and controls in the form to which the code is attached, or a list box located at the top of the **Properties** window that lists the form and its controls.
549549

550550

551551
## Object Browser
@@ -625,7 +625,7 @@ A named sequence of statements executed as a unit. For example, **Function**, *
625625

626626
## Procedure box
627627

628-
A list box at the upper-right corner of the **Code** window and the **Debug** window that displays the procedures recognized for the object displayed in the **Object** box.
628+
A list box at the upper-right corner of the Code window and the **Debug** window that displays the procedures recognized for the object displayed in the **Object** box.
629629

630630

631631
## procedure call

Language/How-to/copy-example-code-from-help.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ Sometimes you may want to copy a useful example from Visual Basic Help. While ma
2626

2727
4. Choose **Copy** from the shortcut menu. On the Macintosh, press the **Copy** button.
2828

29-
5. Move the focus back to the **Code** window and position the mouse pointer where you want the code example to be inserted.
29+
5. Move the focus back to the Code window and position the mouse pointer where you want the code example to be inserted.
3030

31-
6. Right-click again and choose **Paste** to insert the code example into the **Code** window.
31+
6. Right-click again and choose **Paste** to insert the code example into the Code window.
3232

33-
**Tip** You can also press CTRL+C to copy a selected example in a Help window. Press CTRL+V to paste the example into the **Code** window.
33+
**Tip** You can also press CTRL+C to copy a selected example in a Help window. Press CTRL+V to paste the example into the Code window.
3434

3535

Language/How-to/execute-a-specific-statement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ While execution of your code is halted, you can control the execution sequence o
1818

1919

2020

21-
1. In the **Code** window, position the insertion point anywhere within the statement.
21+
1. In the Code window, position the insertion point anywhere within the statement.
2222

2323
2. On the **Debug** menu, click **Set Next Statement** (CTRL+F9). - or on Windows - Position the mouse pointer in the [margin indicator](../Glossary/vbe-glossary.md#margin-indicator) next to the current execution point.
2424

Language/How-to/find-a-procedure.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ ms.date: 06/08/2017
1515

1616

1717

18-
- To view an existing general procedure, select **(General)** in the [Object box](../Glossary/vbe-glossary.md#object-box) in the **Code** window, and then select the procedure in the [Procedure box](../Glossary/vbe-glossary.md#procedure-box).
18+
- To view an existing general procedure, select **(General)** in the [Object box](../Glossary/vbe-glossary.md#object-box) in the Code window, and then select the procedure in the [Procedure box](../Glossary/vbe-glossary.md#procedure-box).
1919

20-
- To view an event procedure, select the appropriate object in the **Object** box in the **Code** window, and then select the event in the **Procedure** box.
20+
- To view an event procedure, select the appropriate object in the **Object** box in the Code window, and then select the event in the **Procedure** box.
2121

22-
**Note** To visually separate [procedures](../Glossary/vbe-glossary.md#procedure) in the **Code** window, you can select the **Procedure Separator** check box on the **Editor** tab of the **Options** dialog box (**Tools** menu). You can switch between Procedure view and Full Module view using the buttons in the lower-left corner of the **Code** window.
22+
**Note** To visually separate [procedures](../Glossary/vbe-glossary.md#procedure) in the Code window, you can select the **Procedure Separator** check box on the **Editor** tab of the **Options** dialog box (**Tools** menu). You can switch between Procedure view and Full Module view using the buttons in the lower-left corner of the Code window.
2323

2424
**To find a procedure in another module**
2525

@@ -30,7 +30,7 @@ ms.date: 06/08/2017
3030

3131
3. Select the module in the **Classes** list.
3232

33-
4. Double-click the procedure name in the **Members of** list. The selected procedure is displayed in the **Code** window.
33+
4. Double-click the procedure name in the **Members of** list. The selected procedure is displayed in the Code window.
3434

3535

3636
You can use the following keyboard shortcuts:

Language/How-to/find-a-variable-definition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.date: 06/08/2017
1515

1616

1717

18-
1. In the **Code** window, select the [variable](../Glossary/vbe-glossary.md#variable) whose definition you want to see.
18+
1. In the Code window, select the [variable](../Glossary/vbe-glossary.md#variable) whose definition you want to see.
1919

2020
2. From the **View** menu, choose **Definition** (SHIFT+F2).
2121

Language/How-to/set-visual-basic-environment-options.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ You can set the behavior and look of the Visual Basic development environment th
3939
|**Require Variable Declaration**|Explicit variable declarations are required in [modules](../Glossary/vbe-glossary.md#module).|
4040
|**Auto Indent**|After tabbing the first line of code, all subsequent lines start at that tab location.|
4141
|**Tab Width**|The tab width, which can range from 1 - 32 spaces. (Default is 4 spaces.)|
42-
|**Default to Full Module View**|[Procedures](../Glossary/vbe-glossary.md#procedure) for new modules are displayed in the **Code** window as a single, scrollable list or one procedure at a time.|
43-
|**Procedure Separator**|Display separator bars at the end of each procedure in the **Code** window.|
42+
|**Default to Full Module View**|[Procedures](../Glossary/vbe-glossary.md#procedure) for new modules are displayed in the Code window as a single, scrollable list or one procedure at a time.|
43+
|**Procedure Separator**|Display separator bars at the end of each procedure in the Code window.|
4444
|**Auto List Members**|At the insertion point, Visual Basic displays information that logically completes a statement.|
4545
|**Auto Quick Info**|Information about functions and their [arguments](../Glossary/vbe-glossary.md#argument) is displayed as you type.|
4646
|**Auto Data Tips**|Automatically display the value of any [variable](../Glossary/vbe-glossary.md#variable) on which you place the mouse pointer. Available only in [break mode](../Glossary/vbe-glossary.md#break-mode).|
47-
|**Drag-Drop in Text Editing**|Code elements can be dragged from the **Code** window into the **Immediate** or **Watch** windows.|
47+
|**Drag-Drop in Text Editing**|Code elements can be dragged from the Code window into the **Immediate** or **Watch** windows.|
4848

4949
**Editor Format**
5050

Language/How-to/split-the-code-window.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ ms.date: 06/08/2017
1111

1212
# Split the Code Window
1313

14-
You can split the **Code** window horizontally into two panes to view different code segments of a [module](../Glossary/vbe-glossary.md#module) at the same time. Each pane scrolls separately, both horizontally and vertically. The[Procedure](../Glossary/vbe-glossary.md#procedure) and [Object box](../Glossary/vbe-glossary.md#object-box) options refer to the pane that has the focus. Code changes are immediately reflected in both panes.
14+
You can split the Code window horizontally into two panes to view different code segments of a [module](../Glossary/vbe-glossary.md#module) at the same time. Each pane scrolls separately, both horizontally and vertically. The[Procedure](../Glossary/vbe-glossary.md#procedure) and [Object box](../Glossary/vbe-glossary.md#object-box) options refer to the pane that has the focus. Code changes are immediately reflected in both panes.
1515

1616
**To split the Code window into panes**
1717

1818

1919

2020

21-
- Drag the split bar at the top of the vertical scroll bar down from the upper-right corner of the **Code** window.
21+
- Drag the split bar at the top of the vertical scroll bar down from the upper-right corner of the Code window.
2222

2323

2424
**To remove a split from the Code window**
2525

2626

27-
- Double-click the split bar or drag it to the top or bottom of the **Code** window.
27+
- Double-click the split bar or drag it to the top or bottom of the Code window.
2828

2929

3030

Language/Reference/User-Interface-Help/activevbproject-property-vba-add-in-object-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ Returns the active [project](../../Glossary/vbe-glossary.md#project) in the [Pro
1717

1818
## Remarks
1919

20-
The **ActiveVBProject** property returns the project that is selected in the **Project** window or the project in which the components are selected. In the latter case, the project itself isn't necessarily selected. Whether or not the project is explicitly selected, there is always an active project.
20+
The **ActiveVBProject** property returns the project that is selected in the Project window or the project in which the components are selected. In the latter case, the project itself isn't necessarily selected. Whether or not the project is explicitly selected, there is always an active project.
2121

Language/Reference/User-Interface-Help/add-in-manager-dialog-box.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Add-In Manager Dialog Box
2+
title: Add-In Manager dialog box
33
keywords: vbui6.chm181033
44
f1_keywords:
55
- vbui6.chm181033
@@ -9,8 +9,7 @@ ms.date: 06/08/2017
99
---
1010

1111

12-
# Add-In Manager Dialog Box
13-
12+
# Add-In Manager dialog box
1413

1514
![Add-in manager](../../../images/va5lxy1_ZA01201779.gif)
1615

0 commit comments

Comments
 (0)