View Full Version : Combo Boxes


kev
12-31-2000, 12:16 PM
Hi Im looking for some way
of auto expanding a combo box
when the field has focus
so that the user automatically
sees the choices

R. Hicks
12-31-2000, 01:51 PM
Use the On Got Focus event of the combobox:

Private Sub YourCboboxName_GotFocus()
Me![YourCboboxName].Dropdown
End Sub

Change "YourCboboxName" to the name of your combobox.

HTH
RDH

kev
01-01-2001, 02:07 AM
Thanks Works perfectly
have a good year