I am trying to use a Combobutton. The combo button works,
and loads the array to list. But I don't get any location
information via the COMBOPOS variable. Here are some code:
TYPE entryTYPE
ComboPos AS INTEGER
END TYPE
DIM E AS SHARED entryTYPE
COMBOBUTTON formHandle, 1, 3, 20, 18, 34, &H71, &H1F, &HE0, 0, 0,DepartNum$(), 1
WINPRINT formhandle, 13, 1, -1, " -> " + STR$(E.ComboPos)
Any ideas on whats missing?
------------------
Michael Burgett
Comment