COMBOBOX ADD

<< Click to Display Table of Contents >>

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

COMBOBOX ADD

 

Description

 

Add a string value to a combo box control.

 

Syntax

 

There are multiple syntax depending what best fit programmer needs.

COMBOBOX ADD hwnd, ctrlID, sTxt

COMBOBOX ADD hWnd, ctrlID, sTxt [, sTxt [, ...]]

COMBOBOX ADD hWnd, ctrlID, sTxt USING sSep

 

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 ...

sTxt

String

No

A text expression representing the text you want to add to the COMBOBOX.

sSep

String

No

When USING is present, sTxt is interpreted as a string containing multiple items separated by sSep string.

 

Remarks

 

Restrictions

 

See also

 

Examples

 

COMBOBOX ADD hdlg, %ControlID, "box"

COMBOBOX ADD hdlg, %ControlID, "box", "cam", "cyl" '...

COMBOBOX ADD hdlg, %ControlID, "box|cam|cyl" USING "|"

 

'---Or both syntax at the same time:

COMBOBOX ADD hdlg, %ControlID, "box", "cam", "cyl", "A,B,C,whatever" USING ","