I added some new toolbar buttons and menu items in my Resource Editor, but I don't see them when I'm running the application. What's going wrong?
The BCGControlBar library loads toolbars and menu items directly from the resources when you are running the program for the first time. Next time, the library will retrieve the data from the registry, where all customization results were saved. To see your changes, just open the customization dialog, switch to the "Toolbars" page, and click the "Reset All" button. The customization manager will reset all toolbars and menu states.
In addition, the BCGControlBar Library automatically updates toolbar and menu resources. To enable this feature, you need to either derive your application class from CBCGPWinApp or pass TRUE to the CBCGPWorkspace constructor:
CMyApp::CMyApp() :
CBCGPWorkspace (TRUE /* bResourceSmartUpdate */)
{
}
If you're using CBCGPWinApp as the parent of your application class, the "Resource Smart Update" is added automatically.