menu items
-
Hi I have various forms that are opened by a main form (SDI) and each form has its own context menu (for right clicking) that includes functions like copy, paste, delete, etc. But if I select Edit->Copy from the main menu of the main form, it should copy the right thing in the currently active form (the form with the focus) . What is the best way to accomplish this basic function? Is it through menu merge? Thanx
-
Hi I have various forms that are opened by a main form (SDI) and each form has its own context menu (for right clicking) that includes functions like copy, paste, delete, etc. But if I select Edit->Copy from the main menu of the main form, it should copy the right thing in the currently active form (the form with the focus) . What is the best way to accomplish this basic function? Is it through menu merge? Thanx
-
Are you talking about MDI. If its a MDI, then Menu merge will work. Have the implementation of the menu clicks on the child form. The parent window should provide the basic menu's like Exit, Open, Close arrange vertically etc.
i'm actually working with SDI, is there a way to merge it in SDI?
-
Hi I have various forms that are opened by a main form (SDI) and each form has its own context menu (for right clicking) that includes functions like copy, paste, delete, etc. But if I select Edit->Copy from the main menu of the main form, it should copy the right thing in the currently active form (the form with the focus) . What is the best way to accomplish this basic function? Is it through menu merge? Thanx