COMBOBOX SELECT

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Types > ComboBox Control > ComboBox Control Commands >

COMBOBOX SELECT

 

Description

 

Select a string in a combo box and make it the default selection.

 

Syntax

 

COMBOBOX 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