guiListCreate (Function) |
Top Previous Next |
This function creates a new list control on the provided form. List controls can be used to allow the user to select between a number or things, or to provide line based data to the user.
Input: form : SYSHANDLE A handle to the form that the list control is created on.
x : SINT default 1 The horizontal location of the list control.
y : SINT default 1 The vertical location of the list control.
w : SINT default 1 The width of the list control.
h : SINT default 1 The height of the list control.
tag : DINT The tag value to store.
size : INT (1..100) default 10 The number of items the list will contain.
type : INT default 1 The type of list to create:
Output: list : SYSHANDLE The handle to the new list control.
Returns: INT
Declaration: FUNCTION guiListCreate : INT;
Example: INCLUDE rtcu.inc |