It's very easy to drop the combo box down in its Enter event:
Me.DropDown
If you want to respond to typing, use its Change event. You would need to
know whether the combo is already dropped down or not. Access doesn't
actually give you this, but it is possible to get it with an API call:
Determining Combobox's Dropped state
at: http://www.mvps.org/access/api/api0052.htm
Private Sub cboDBF_Change()
If Len(cboDBF.Text) > 0 Then cboDBF.Dropdown
End Sub
Thank you - Bob
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.