Navigation: thinBasic Modules > UI (User Interface) > CONTROLs > Dedicated Control Functions > LISTBOX Control > 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 ","
© 2004-2008 thinBasic. All rights reserved. | Version 1.7.0.0 | Web Site: http://www.thinbasic.com |