Selecting combo box values by the arrow keys

HVACMAN24

Registered User.
Local time
Today, 08:08
Joined
Mar 20, 2010
Messages
61
I apologize if this has been asked before, I tried searching the forum but didnt see this particular issue.

I have a number of combo boxes on a form and have set the tab indexes to tap through them in the order I want, but when I try to hit the down arrow to select a value in the list it moves to the next box. What do I need to set to be able to use the arrows to select values and only tab to go from box to box? I've tried expression builder on the onkeyup/down properties but nothing I tried there was working either.

Thanks
 
In the combo's On Got Focus event put the following;
Code:
Me.ComboName.Dropdown
 

Users who are viewing this thread

Back
Top Bottom