G Guest Mar 30, 2005 #1 How can I make the drop menu on the combo boxes open when I click on the text box area, not the arrow drop down button?
How can I make the drop menu on the combo boxes open when I click on the text box area, not the arrow drop down button?
G Guest Mar 30, 2005 #2 Hi, Bladelock. Using either the OnClick or OnGotFocus event, you can use the Dropdown method of the combo box object: Me!MyComboBox.Dropdown Hope that helps. Sprinks
Hi, Bladelock. Using either the OnClick or OnGotFocus event, you can use the Dropdown method of the combo box object: Me!MyComboBox.Dropdown Hope that helps. Sprinks
R Rick B Mar 30, 2005 #3 Add code to the form's got focus event... Private Sub SomeFieldName_GotFocus() Me.SomeFieldName.Dropdown End Sub
Add code to the form's got focus event... Private Sub SomeFieldName_GotFocus() Me.SomeFieldName.Dropdown End Sub