item$ = WinXListBox_GetItem$ (hListBox, index)
description
Parameter | Description |
---|---|
hListBox | The handle to the list box to get the item from |
index | The 0 based index of the item to get |
The string representation of the item at the specified index. If the index was invalid the return value is "".
none
'Get the first item PRINT "The first item is:";WinXListBox_GetItem$ (hLB, 0) |