I am trying to combine the two main menus together, but I am having trouble getting the correct result with sub-items. I use the GroupIndex property in my MenuItems to control merge / insert.
Menu1 (with group pointers) is as follows
- File = 10
- Edit = 20
- Help = 90
Menu2 is as follows
And i do
Menu1.Merge(Menu2);
I want a new top menu "Widgets" and a new "Clear" command in the "Edit" menu to appear in the combo menu. Widgets work fine, but the Edit menu lost the cut and paste, which I didn't want.
How can I stop the Cut and Paste commands?