What is the correct syntax to put the variable in this line of code?
cboITEM.additem rst(*VARIABLE*)
(Sorry, I'm not all here today.)
Printable View
What is the correct syntax to put the variable in this line of code?
cboITEM.additem rst(*VARIABLE*)
(Sorry, I'm not all here today.)
?? rst() ??
what is the rst?
Combo1.AddItem Variable
is normal....I dont see rst in the help file even
I do it this way....
rst.movefirst
for n = 0 to rst.recordcount - 1
myvariable = rst("field")
cboITEM.additem myvariable(n)
rst.movenext
next
ahh...recordset...
:rolleyes: