Dropdown is un-responsive

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
 
M

Mark A. Sam

Hello Bill,

Just a wildshot... Change your code to:

MyCombo.SetFocus

MyCombo.Dropdown

God Bless,

Mark A. Sam
 
B

Bill

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
 
M

Mark A. Sam

Then from the public function try:

Form.MyCombo.SetFocus
Form.MyCombo.Dropdown

Or

Screen.MyCombo.SetFocus
Screen.MyCombo.Dropdown
 
Top