I`ve searched the forums, found lots of threads about problems with the Combobox gadget, but not the one I`m having
Basically, I`ve got a combobox in a window, and I want to be able to read each of the items that`s been added to the list.
But using the snippet below, doesn`t return anything except an empty string
items=CountGadgetItems(#MyCombo)
if items
for a=0 to items-1
debug str(a)+":"+getgadgetitemtext(#MyCombo,a,0)
next
endif
