K kev Registered User. Local time Today, 16:16 Joined Dec 30, 2000 Messages 13 Dec 31, 2000 #1 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
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 AWF VIP Local time Today, 10:16 Joined Dec 23, 1999 Messages 619 Dec 31, 2000 #2 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
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
K kev Registered User. Local time Today, 16:16 Joined Dec 30, 2000 Messages 13 Jan 1, 2001 #3 Thanks Works perfectly have a good year