LISTBOX ADD

<< Click to Display Table of Contents >>

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

LISTBOX ADD

 

Description

 

Add a string value to a list box control.

 

Syntax

 

There are multiple syntax depending what best fit programmer needs.

LISTBOX ADD hWnd, ctrlID, sTxt

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

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

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

 

LISTBOX ADD hdlg, %ControlID, "box"

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

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

 

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

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