Hi,
When you define a document template in an MDI app, you specify the menu resource that gets used for the main frame.

I have a bunch (~ 5) different document types that my application can load. For each of these, there is a unique set of commands. There is also a global set of commands that applies no matter which document type is currently active.

Maintaining 5 different menus, that contain the unique commands for that document type, *plus* all the global commands, is a maintenance nightmare. Every time I add a global command, I have to add it to all 5 menus.

Is there some way to make this easier? Like a way to merge document-specific menus with a global menu?

thanks!