|
|
|
|
MenuInsertMenu (Function) In french: MenuInsèreMenu Inserts a menu before another menu in a window. The inserted menu can contain other menus, menu options, separators, ... To add a menu at the end of an existing menu, use MenuAddMenu.
// Insert a new menu MenuInsertMenu(_Menu, "MNU_Schedule", "MNU_Monitoring", "Project monitoring") // Add an option into the new menu MenuAddOption("MNU_Monitoring", "MNU_Prj", "Sales management", Sales_Mgt)
Syntax
Inserting a menu (position defined by a menu name) Hide the details
<Result> = MenuInsertMenu(<Source menu> , <Insert menu> , <Menu to create> , <Caption>)
<Result>: Integer - Position of the menu in the sub-menu,
- -1 if an error occurred.
<Source menu>: Menu name Name of the menu to which the new menu should be added. The new menu will be added at the specified position. <Insert menu>: Menu name Name of the menu used as base position for the insertion. The new menu will be inserted before this position. <Menu to create>: Character string Name of the menu to create and to insert. This name will be used to programmatically handle the menu. A fatal error occurs if this name corresponds to an existing menu. <Caption>: Character string Text of the new menu. This caption will be displayed in the window.
Inserting a menu (position defined by a menu subscript) Hide the details
<Result> = MenuInsertMenu(<Source menu> , <Insertion index> , <Menu to create> , <Caption>)
<Result>: Integer - Position of the menu in the sub-menu,
- -1 if an error occurred.
<Source menu>: Menu name Name of the menu to which the new menu should be added. The new menu will be added at the specified position. <Insertion index>: Integer Subscript of the menu used as base position for the insertion. The new menu will be inserted before this position. <Menu to create>: Character string Name of the menu to create and to insert. This name will be used to programmatically handle the menu. A fatal error occurs if this name corresponds to an existing menu. <Caption>: Character string Text of the new menu. This caption will be displayed in the window.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|