Hello,
I use the code below to display items with a combo box (assume all declarations and assignments are OK):
Do While Not rh.EOF
Combo1.AddItem rh!Name
rh.MoveNext
Loop
How can I get the default value in the combo box above to equal the first value in the rh recordset above. At the moment the combo box is empty until I choose an item from the drop down menu.
Thanks
I use the code below to display items with a combo box (assume all declarations and assignments are OK):
Do While Not rh.EOF
Combo1.AddItem rh!Name
rh.MoveNext
Loop
How can I get the default value in the combo box above to equal the first value in the rh recordset above. At the moment the combo box is empty until I choose an item from the drop down menu.
Thanks