Is there a way to toggle the dropdown of a combo box through VBA? .Dropdown
is a method and it only works in one direction. I'm looking for the following functionality:
MyCombo.Dropdown = True
MyCombo.Dropdown = False
Obviously the above does not work in MS Access. I'm guessing I'll need to use some sort of hack/workaround for this. I'd like to avoid a .Requery
. That would probably work, but there could be a major performance penalty depending on what the source of the combo box is.
Dropdown = False
? With a keyboard shortcut? Then why not just ESC? Sorry, but I think I missed something here. – WamsleySendKeys "{F4}"
would be one way to toggle the dropdown from code. Of course, the F4 could have other side effects, but it is certainly a reasonable approach. – Amaya