combo box shortcuts

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form with a combo box. It's already set to autocomplete when I type
in the first few characters of my selection, but many of them are similar
until the end. I'd like to be able to just arrow down to get to the next
selection, but arrowing down takes me to the next field. How do I set this
shortcut? I tried using a macro, but it was more confusing than not, and I
don't know enough code to use Visual Basic.
 
Hi. AFAIK, there is no Access setting for this behavior, but you can easily
create the code for it, using the KeyDown event:

Private Sub YourCombo_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyDown Then
Me!YourCombo.Dropdown
End If
End Sub

Hope that helps.
Sprinks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

combo box 1
Chrome keyboard shortcuts 2
Combo Box Problem 1
Combo Box Issue 1
combo box in subform? 4
Combo List Drop Down Arrow 2
Combo Box not working right! 3
First entry in combo 7

Back
Top