J Josef Jun 3, 2004 #1 is there a way to automatically have the combo box drop down automatically when focus is set to it? thanks.
is there a way to automatically have the combo box drop down automatically when focus is set to it? thanks.
R Rick Brandt Jun 3, 2004 #2 Josef said: is there a way to automatically have the combo box drop down automatically when focus is set to it? Click to expand... In the GotFocus event... Me.ComboBoxName.DropDown
Josef said: is there a way to automatically have the combo box drop down automatically when focus is set to it? Click to expand... In the GotFocus event... Me.ComboBoxName.DropDown
K Ken Snell Jun 3, 2004 #3 Sure .. use the .DropDown property of the combo box: Private Sub cboBoxName_GotFocus() Me.cboBoxName.Dropdown End Sub
Sure .. use the .DropDown property of the combo box: Private Sub cboBoxName_GotFocus() Me.cboBoxName.Dropdown End Sub
J Josef Jun 3, 2004 #4 kthsneisllis9 said: Sure .. use the .DropDown property of the combo box: Private Sub cboBoxName_GotFocus() Me.cboBoxName.Dropdown End Sub Click to expand... thx ;o)
kthsneisllis9 said: Sure .. use the .DropDown property of the combo box: Private Sub cboBoxName_GotFocus() Me.cboBoxName.Dropdown End Sub Click to expand... thx ;o)