G
Guest
How can I clear a combo box. ie., I want to reload the combo. Like in VB
comboName.Clear is there but in MS Access how to clear the values and Reload
the value. Actually I lad the combo like this ...
rec.open "SELECT EMP_ID from EMP_mast ", adoopenforwardonly,adlockreadonly
while rec.eof = false
mycombo.additem rec!Emp_ID
rec.movenext
wend
Thanks in Advance.....
comboName.Clear is there but in MS Access how to clear the values and Reload
the value. Actually I lad the combo like this ...
rec.open "SELECT EMP_ID from EMP_mast ", adoopenforwardonly,adlockreadonly
while rec.eof = false
mycombo.additem rec!Emp_ID
rec.movenext
wend
Thanks in Advance.....