Is it possible to put a single bit of code on an Access form that would automatically show the dropdown list whenever any combobox on the form has focus?
I know I can automatically show the dropdown list whenever a combobox has focus by using the event below. But, if possible, I would prefer to not have to put that line of code on each combobox since I have so many.
Private Sub combobox_GotFocus()
'When the combobox receives focus
'display in drop down position
Me.combobox.Dropdown
End Sub
My database has dozens of forms in it with dozens of comboboxes on each form.