ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
MenuAddMenu (Function)
In french: MenuAjouteMenu
AjaxNot available
Adds a new menu into a window or into a page. This menu can contain other menus, menu options, separators, ...
To insert a menu at a specific location, use MenuInsertMenu.
Example
// Add a new menu
MenuAddMenu(MENU_MyMenu, "OPT_Schedule", "Schedule")
// Add an option into the new menu
MenuAddOption("OPT_Schedule", "OPT_Create", "Create", Create_Schedule)
// Associate an image with the menu option
{"OPT_Create", indControl}..Image = "schedule.png"
// Add a separator
MenuAddSeparator("OPT_Schedule")
// Add a new option
MenuAddOption("OPT_Schedule", "OPT_View", "View", View_schedule)
Syntax

Adding a menu Hide the details

<Result> = MenuAddMenu(<Source menu> , <Menu to create> , <Caption>)
<Result>: Integer
Position of the menu. A fatal error occurs if the menu was not added.
<Source menu>: Menu name
Name of the menu into which the new menu must be added. The new menu will be added at the end of this menu.
WEBDEV - Server codePHP This menu name must not correspond to a main menu.
<Menu to create>: Character string
Name of the menu that must be added. This name will be used to handle the menu through programming. A fatal error occurs if this name corresponds to an existing menu.
<Caption>: Character string
Caption of the new menu. The caption will be displayed in the window or in the page.
WEBDEV - Server codePHP

Adding a menu while associating it with WLanguage code Hide the details

<Result> = MenuAddMenu(<Source menu> , <Menu to create> , <Caption> , <WLanguage procedure> [, <Procedure parameter>])
<Result>: Integer
Position of the menu. A fatal error occurs if the menu was not added.
<Source menu>: Control name
Name of the menu into which the new menu must be added. The new menu will be added at the end of this menu. This menu name must not correspond to a main menu.
<Menu to create>: Character string
Name of the menu that must be added. This name will be used to handle the menu through programming. A fatal error occurs if this name corresponds to an existing menu.
<Caption>: Character string
Caption of the new menu. This caption will be displayed in the page.
<WLanguage procedure>: Procedure name
Name of the WLanguage procedure called when the menu is selected.
<Procedure parameter>: Any optional type
Parameter that can be passed to <WLanguage procedure> when the menu is selected by the user.
Component: wd280obj.dll
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment