Form.ChooseFromMenu
Syntax:
Parameters:
<ListOfValues> (required)
Value list containing values from which selection is made.
<FormElement> (optional)
Note: Do not specify command bar or submenu buttons as values of this parameter.
Returned value:
Value selected from the menu or Undefined, if the user has made no selection.
Description:
Availability:
Note:
Example:
List = New ValueList; List.Add("Delivery",,True); List.Add("Unloading",,False); List.Add("Picture",,,PictureLib.Picture1); Type = ChooseFromMenu(List, Controls["Button1"]); |