Dropdown is un-responsive

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

After giving focus to a combo box, I've not been
successful in getting the combo box to dropdown.

Me.MyCombo.SetFocus
Me.MyCombo.Dropdown

I don't ever recall having problems with this in the
past. Are there some conditions wherein the
dropdown will be ignored?

Bill
 
Hello Bill,

Just a wildshot... Change your code to:

MyCombo.SetFocus

MyCombo.Dropdown

God Bless,

Mark A. Sam
 
I'll give that a whirl. I suppose it could be a scope
thing, as your post somewhat suggests. The code
is in a Public Function within the class module, so
maybe that has something to do with what I see.
I'll try your suggestion and/or code a Private Sub
to carry out the task.........sort of a "crap-shoot".
Bill
 
Then from the public function try:

Form.MyCombo.SetFocus
Form.MyCombo.Dropdown

Or

Screen.MyCombo.SetFocus
Screen.MyCombo.Dropdown
 

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

Back
Top