I have filled combo1 with data from an ADODB connection, I then need to grab the text vale from that box later on.
I can grab the value by combo1.text but I need to automatically go to the next item in the list so some thing like
for y = 1 to combo1.listcount
newstring = combo1.text
call exporter(newstring)
combo1.movenext
next y
I know this code will not work but is there something like this that will do the same job?
I can grab the value by combo1.text but I need to automatically go to the next item in the list so some thing like
for y = 1 to combo1.listcount
newstring = combo1.text
call exporter(newstring)
combo1.movenext
next y
I know this code will not work but is there something like this that will do the same job?