PRB: Can't Remove Controls from the Controls Toolbar in VC++
ID: Q199873
|
The information in this article applies to:
-
Microsoft Visual C++, 32-bit Editions, versions 5.0, 6.0
SYMPTOMS
When you add an ActiveX control to your resources in Visual C++, it appears in the Controls Toolbar of the resource editor. The resource editor does not provide any method to remove the control if it is no longer needed.
CAUSE
The reference to the control is stored in the workspace (.dsw) file. There are no provisions in the resource editor for removing this reference once it is stored.
RESOLUTIONSteps to Remove the Control
- Rename the project's associated workspace file (.dsw). A workspace may contain one or more projects. By renaming it, you lose the dependency information between your projects.
- Open the project file (.dsp). (If you have multiple projects in a workspace, then you can open any project file.)
A clean .dsw file will automatically be created. All added controls will be removed from the control toolbar.
NOTE: Any subprojects will have to be added back again to the workspace, and their dependencies will need to be reconstructed.
MORE INFORMATIONSteps to Reproduce Behavior
- Create an MFC AppWizard (.exe) application with default settings.
- On the Project menu, point to Add To Project, and then click Components and Controls.
- In the Components and Controls Gallery dialog box, double-click Registered ActiveX Controls.
- Select any one of the controls (for example, the Label object).
- Click Insert, and follow the instructions for adding the control.
- Click Close.
- In the Workspace pane, click the Resource View tab.
- Expand the project's resources, and then double-click the Dialog node.
- Double-click IDD_ABOUTBOX. The About dialog box and the Controls toolbar should appear.
Note that the component added earlier is now displayed in the toolbar.
To remove a component from the project, a user can manually delete the source files, but he or she cannot clean up this toolbar.
Additional query words:
kbDSupport
Keywords : kbEditor kbide kbResourceEd kbVC500bug kbVC600bug kbGrpDSTools
Version : winnt:5.0,6.0
Platform : winnt
Issue type : kbprb
|