<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Types > ListView Control > Listview Control Creation > CONTROL ADD LISTVIEW |
Description
Create a new ListView control inside a dialog.
Syntax
hndl = CONTROL ADD LISTVIEW [Name ControlName], hwnd, ctrlID, DummyString, xPos, yPos, Width, Height [, [Style] [, [ExStyle]]]
Returns
Number
Control window handler.
Parameters
Name |
Type |
Optional |
Meaning |
ControlName |
String |
Yes |
Optional name for the control.
This name must be globally unique, and is used to create a global variable to be used with control name methods and properties. |
hwnd |
Number |
No |
Handle of the dialog containing the control |
ctrlID |
Number |
No |
Control identifier |
DummyString |
String |
Yes |
---Not used--- Leave blank |
xPos |
Number |
No |
Horizontal position of the control inside the dialog |
yPos |
Number |
No |
Vertical position of the control inside the dialog |
Width |
Number |
No |
Control width |
Height |
Number |
No |
Control height |
Style |
Number |
Yes |
Primary style of the control. See LISTVIEW Style equates. |
ExStyle |
Number |
Yes |
Extended style of the control. See LISTVIEW ExStyle equates. |
Remarks
Restrictions
See also
Examples