<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Types > ListBox Control > ListBox Control Commands > LISTBOX SELECT |
Description
Select a string in a single-selection list box and make it the default selection.
Syntax
LISTBOX SELECT hWnd, ctrlID, {PositionNumber | TextToSelect}
Returns
None
Parameters
Name |
Type |
Optional |
Meaning |
hWnd |
Number |
No |
Handle of the dialog containing the control |
ctrlID |
Number |
No |
Control identifier assigned to the control during CONTROL ADD ... |
PositionNumber |
Number |
No |
Position of the item to be selected. |
TextToSelect |
String |
No |
Text to be found. If found it will be selected |
Remarks
How thinBasic thinBasic engine determine if to select by a number of by a text comparison?
If a numeric expression will be passed, selection will take place by PositionNumber.
If a string expression will be passed, selection will take place by TextToSelect.
Restrictions
See also
Examples