Skip to content

Commit 4fafe46

Browse files
author
Colin Robertson
committed
Fix up resource editor links
1 parent eb8fe55 commit 4fafe46

250 files changed

Lines changed: 593 additions & 593 deletions

File tree

Some content is hidden

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

docs/atl/modifying-the-atl-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ translation.priority.ht:
3737
# Modifying the ATL Project
3838
At this point, your composite control project implements the necessary objects for your composite control. The next step is to add any controls that the composite control will contain and handle any necessary events.
3939

40-
To add additional ActiveX or Windows controls, add a new resource script and then use the Dialog editor. For more information on adding controls (and related tasks), see [Dialog Editor](../mfc/dialog-editor.md).
40+
To add additional ActiveX or Windows controls, add a new resource script and then use the Dialog editor. For more information on adding controls (and related tasks), see [Dialog Editor](../windows/dialog-editor.md).
4141

4242
To handle any necessary events from the ActiveX controls, see [Adding Functionality to the Composite Control](../atl/adding-functionality-to-the-composite-control.md).
4343

docs/atl/reference/atl-control-wizard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Inserts into an ATL project (or an MFC project with ATL support) an ATL control.
100100
Sets the object description that will appear in the registry
101101

102102
**ProgID**
103-
Sets the name that containers can use instead of the CLSID of the object. This field is not automatically populated. If you do not manually populate this field, the control may not be available to other tools. For example, ActiveX controls that are generated without a `ProgID` are not available in the **Insert ActiveX Control** dialog box. For more information about the dialog box, see [Insert ActiveX Control Dialog Box](../../mfc/insert-activex-control-dialog-box.md).
103+
Sets the name that containers can use instead of the CLSID of the object. This field is not automatically populated. If you do not manually populate this field, the control may not be available to other tools. For example, ActiveX controls that are generated without a `ProgID` are not available in the **Insert ActiveX Control** dialog box. For more information about the dialog box, see [Insert ActiveX Control Dialog Box](../../windows/insert-activex-control-dialog-box.md).
104104

105105
## See Also
106106
[ATL Control](../../atl/reference/adding-an-atl-control.md)

docs/atl/reference/atl-dialog-wizard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ translation.priority.ht:
3838
# ATL Dialog Wizard
3939
This wizard inserts into the project an ATL dialog box object, derived from [CAxDialogImpl](../../atl/reference/caxdialogimpl-class.md). A dialog box derived from `CAxDialogImpl` can host ActiveX controls.
4040

41-
The wizard creates a dialog resource with default **OK** and **Cancel** buttons. You can edit the dialog resource and add ActiveX controls using the [Dialog Editor](../../mfc/dialog-editor.md) in Resource View.
41+
The wizard creates a dialog resource with default **OK** and **Cancel** buttons. You can edit the dialog resource and add ActiveX controls using the [Dialog Editor](../../windows/dialog-editor.md) in Resource View.
4242

4343
The wizard inserts into the header file a [message map](../../atl/message-maps-atl.md) and declarations for handling the default click events. See [Implementing a Dialog Box](../../atl/implementing-a-dialog-box.md) for more information about ATL dialog boxes.
4444

docs/build/reference/version-version-information.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ translation.priority.ht:
5555

5656
The *major* and *minor* arguments are decimal numbers in the range 0 through 65,535. The default is version 0.0.
5757

58-
The information specified with /VERSION does not affect the version information that appears for an application when you view its properties in File Explorer. That version information comes from a resource file that is used to build the application. See [Version Information Editor](../../mfc/version-information-editor.md) for more information.
58+
The information specified with /VERSION does not affect the version information that appears for an application when you view its properties in File Explorer. That version information comes from a resource file that is used to build the application. See [Version Information Editor](../../windows/version-information-editor.md) for more information.
5959

6060
Another way to insert a version number is with the [VERSION](../../build/reference/version-c-cpp.md) module-definition statement.
6161

docs/data/ado-rdo/inserting-the-control-into-a-visual-cpp-application.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ translation.priority.ht:
3333
- "zh-tw"
3434
---
3535
# Inserting the Control into a Visual C++ Application
36-
You can insert an ActiveX control into a dialog box from the toolbar or using the [Insert ActiveX Control](../../mfc/insert-activex-control-dialog-box.md) dialog box.
36+
You can insert an ActiveX control into a dialog box from the toolbar or using the [Insert ActiveX Control](../../windows/insert-activex-control-dialog-box.md) dialog box.
3737

3838
### To insert an ActiveX control from the Toolbox
3939

@@ -47,7 +47,7 @@ You can insert an ActiveX control into a dialog box from the toolbar or using th
4747

4848
1. Right-click the dialog box.
4949

50-
2. On the shortcut menu, click [Insert ActiveX Control](../../mfc/insert-activex-control-dialog-box.md).
50+
2. On the shortcut menu, click [Insert ActiveX Control](../../windows/insert-activex-control-dialog-box.md).
5151

5252
> [!NOTE]
5353
> When you insert an ActiveX control from **Insert ActiveX Control** into a project, [wrapper classes](../../data/ado-rdo/wrapper-classes.md) are not included in the project. You are responsible for creating a wrapper class to customize the control's functionality.

docs/data/designing-and-creating-a-record-view-mfc-data-access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ You can create your record view class with the [MFC Application Wizard](../mfc/r
4848

4949
#### To design your form
5050

51-
1. See [Dialog Editor](../mfc/dialog-editor.md).
51+
1. See [Dialog Editor](../windows/dialog-editor.md).
5252

5353
#### To create your record view class
5454

docs/data/user-interface-updating-for-record-views-mfc-data-access.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ translation.priority.ht:
3939

4040
### To create menu resources with the menu editor
4141

42-
1. Referring to the information about using the [menu editor](../mfc/menu-editor.md), create your own menu with the same four commands.
42+
1. Referring to the information about using the [menu editor](../windows/menu-editor.md), create your own menu with the same four commands.
4343

4444
#### To create toolbar buttons with the graphics editor
4545

46-
1. Referring to the information about using the [toolbar editor](../mfc/toolbar-editor.md), edit the toolbar resource to add toolbar buttons for your record navigation commands.
46+
1. Referring to the information about using the [toolbar editor](../windows/toolbar-editor.md), edit the toolbar resource to add toolbar buttons for your record navigation commands.
4747

4848
## See Also
4949
[Supporting Navigation in a Record View](../data/supporting-navigation-in-a-record-view-mfc-data-access.md)

docs/error-messages/compiler-errors-1/compiler-error-c2026.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ imagine a really, really "
6363
";
6464
```
6565

66-
You may want to store exceptionally large string literals (32K or more) in a custom resource or an external file. See [Creating a New Custom or Data Resource](../../mfc/creating-a-new-custom-or-data-resource.md) for more information.
66+
You may want to store exceptionally large string literals (32K or more) in a custom resource or an external file. See [Creating a New Custom or Data Resource](../../windows/creating-a-new-custom-or-data-resource.md) for more information.

docs/error-messages/compiler-warnings/compiler-warning-level-1-c4274.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ manager: "ghogen"
3535
## See Also
3636
[comment (C/C++)](../../preprocessor/comment-c-cpp.md)
3737
[Linker Tools Warning LNK4229](../../error-messages/tool-errors/linker-tools-warning-lnk4229.md)
38-
[Working with Resource Files](../../mfc/working-with-resource-files.md)
38+
[Working with Resource Files](../../windows/working-with-resource-files.md)

docs/ide/adding-a-member-variable-visual-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ translation.priority.ht:
3636
- "zh-tw"
3737
---
3838
# Adding a Member Variable (Visual C++)
39-
You can add a member variable to a class using Class View. Member variables can be either for [data exchange and data validation](../mfc/dialog-data-exchange-and-validation.md), or they can be generic. The data member variable wizard is specifically designed to take the relevant information and use it to insert elements in your source files at the appropriate locations. You can add a member variable from the [Dialog editor](../mfc/dialog-editor.md) in [Resource View](../windows/resource-view-window.md), or from [Class View](http://msdn.microsoft.com/en-us/8d7430a9-3e33-454c-a9e1-a85e3d2db925).
39+
You can add a member variable to a class using Class View. Member variables can be either for [data exchange and data validation](../mfc/dialog-data-exchange-and-validation.md), or they can be generic. The data member variable wizard is specifically designed to take the relevant information and use it to insert elements in your source files at the appropriate locations. You can add a member variable from the [Dialog editor](../windows/dialog-editor.md) in [Resource View](../windows/resource-view-window.md), or from [Class View](http://msdn.microsoft.com/en-us/8d7430a9-3e33-454c-a9e1-a85e3d2db925).
4040

4141
> [!NOTE]
4242
> When you are designing and implementing a dialog box, you might find it more efficient to use the Dialog editor to add the dialog box controls, and then to implement the controls' member variables.

0 commit comments

Comments
 (0)