R Randix Registered User. Local time Today, 15:56 Joined Mar 24, 2001 Messages 56 Jun 19, 2001 #1 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??????
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??????
C chrisk Registered User. Local time Today, 15:56 Joined Apr 24, 2001 Messages 13 Jun 20, 2001 #2 In the form On Open event: Me.yourcomboname.SetFocus Me.yourcomboname.Dropdown HTH Chris
R Randix Registered User. Local time Today, 15:56 Joined Mar 24, 2001 Messages 56 Jun 20, 2001 #3 Thank you Chris.