WinXListBox_GetIndex (hListBox, Item$)
Gets the index of a particular item
Parameter | Description |
---|---|
hListBox | The handle to the list box to find the item in |
Item$ | The item to search for |
The 0 based index of the item or -1 if it can't be found
The search is case sensitive.
'Locate an item in the list index = WinXListBox_GetIndex (hLB, UserName$) |