Hi,
I have a MDI with 3 documents and views.
For one of these views I want to disable to Save button in the toolbar.
How do I do that.
Thanks in response
Printable View
Hi,
I have a MDI with 3 documents and views.
For one of these views I want to disable to Save button in the toolbar.
How do I do that.
Thanks in response
just add a ON_UPDATE_COMMAND_UI handler for the menu command ID_FILE_SAVE in your view class and call pCmdUI->Enable(FALSE).