ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Menu functions
  • Tip: Degreasing a set of options
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Enables a menu option (context menu or drop-down menu). The specified menu option can be selected. This function re-enables a menu option grayed out with MenuSelectMinus.
Example
// Dégrise l'option "OPT_BarreIcone" dans 
// le menu déroulant "Menu" de la fenêtre en cours
MenuSelectPlus(OPT_BarreIcone) 
// Dégrise l'option "OPT_BarreIcone" dans le menu "Menu" de la fenêtre "FEN_Fen1"
// La fenêtre FEN_Fen1 n'est pas la fenêtre en cours
MenuSelectPlus(FEN_Fen1, OPT_BarreIcone)
// Dégrise l'option "OPT_BarreIcone" dans le menu contextuel "MenuContextuel1" 
MenuSelectPlus(FEN_Fen1, MenuContextuel1.OPT_BarreIcone)
Syntax
MenuSelectPlus([<Window name>, ] <Name of the menu option>)
<Window name>: Optional character string
Name of the window containing the menu option to enable.
If this parameter is not specified, MenuSelectPlus will handle the current window.
<Name of the menu option>: Character string
Name of the menu option to enable. This name is defined in the description window of the menu option. This name must be specified without quotes.
If this parameter corresponds to a name of a menu, all the sub-options of this menu will also be enabled (recursive). To re-enable an option in a context menu, use the following notation: <Name of context menu>.<Option name>.
Remarks

Tip: Degreasing a set of options

To enable a set of options, you must:
  1. Assign the options to a group of controls.
  2. Re-enable the options (and the other controls in the group) by setting the State property to active and applying it to the group of controls.
Component: wd300obj.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help