ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / Managing external languages / Object functions
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
List,Select,+ (External language)
In french: Liste,Select,+
Selects an element in a drop-down list or in an expanded list. This function is mainly used to handle multi-selection list boxes.
Example
// In C
CALLWD("List,Select,+,ProdList,10");
// In Pascal
CALLWD('List,Select,+,ProdList,10');
// In VB
call CALLWD("List,Select,+,ProdList,10")
Syntax
List,Select,+(<List name> , <Subscript>)
<List name>: Character string
Name of list to use.
<Subscript>: Character string
Subscript of the element to select. If the subscript passed in parameter is greater than the number of elements in the list, List, Select, + has no effect.
For a multi-selection list, if <Subscript>=*, all the elements of the list are selected.
For a single-selection list, <Subscript> must not be equal to "*" otherwise WdInt contains -1 to signal an error.
Minimum version required
  • Version 14
Comments
Click [Add] to post a comment

Last update: 04/06/2023

Send a report | Local help