WinXComboBox_GetItem$


item$ = WinXComboBox_GetItem$ (hCombo, index)

Gets the string of an item in a combo box

Parameter Description
hCombo The handle to the combo box to get the item from
index The 0 based index of the item to get

Returns

The string representation of the specified index or the empty string on fail.

Remarks

none

Examples

'Print the first item
PRINT WinXComboBox_GetItem$ (hCombo, 0)

Related Links

WinXAddComboBox
WinXComboBox_GetSelection
WinXComboBox_GetEditText$