Syntax:
LISTBOX id, x, y, width, height[, style]
The LISTBOX statement creates commonly used controls for a dialog box or window. The control is a rectangle containing a list of user-selectable strings, such as file names.
The LISTBOX statement, which you can use only in a DIALOG or WINDOW statement, defines the identifier, dimensions, and attributes of a control window. The predefined class for this control is WC_LISTBOX. If you do not specify a style, the default style is WS_TABSTOP.
id
Example
This example creates a list-box control whose identifier is 101.
LISTBOX 101, 10, 10, 100, 100