need Combo box to display ...

  • Thread starter Thread starter Keith Bemis
  • Start date Start date
K

Keith Bemis

Hello,
I have on my mainform many combo boxes I need to set it
up son users don't need the mouse to click the down arrow
part of it as some users perfer to use the Tab function so
I need it to show all items when they enter the box and
press the down arrow key and can select from there,,,any
help???thanks a lot...
Keith Bemis
 
You could teach your users to use alt-down-arrow key. This works in just
about all windows programs...including the web browser..and yes even
ms-access.

You can also make the combo drop down when it gets the focus. You could put
the following code in the on-got focus event.

me.ComboName.DropDown
 
Back
Top