View Full Version : Automatic Opening of Combo Box


Randix
06-19-2001, 02:59 PM
I have a combo box on a form. When the form opens, I want the combo box to automatically open up and drop down the list...suggestions how to accomplish??????

chrisk
06-20-2001, 06:15 AM
In the form On Open event:

Me.yourcomboname.SetFocus
Me.yourcomboname.Dropdown

HTH
Chris

Randix
06-20-2001, 06:35 AM
Thank you Chris.