Dropdown Arrow Resize?

B

Bob

Can the dropdown arrow be resized bigger than what it is?

Thanks in advance.........Bob Vance
 
D

Douglas J. Steele

Not really, but you could try pasting a command button with a large arrow
over top of dropdown area, and have the button's Click event invoke the
combo box's Dropdown method:

Private Sub MyButton_Click()

Me.MyCombo.Dropdown

End Sub
 
B

Bob

Douglas , my Dropdown combo box is cbActiveHorses
I created a command button what would be the code I should enter on click
thanks Bob
 
D

Douglas J. Steele

Forgot that the control needs to have focus before you can use the Dropdown
method, so you need both of the following:


Me.cbActiveHorses.SetFocus
Me.cbActiveHorses.Dropdown

or

With Me.cbActiveHorses
.SetFocus
.Dropdown
End With
 
B

Bob

Brilliant Douglas..thanx...Bob

Douglas J. Steele said:
Forgot that the control needs to have focus before you can use the
Dropdown method, so you need both of the following:


Me.cbActiveHorses.SetFocus
Me.cbActiveHorses.Dropdown

or

With Me.cbActiveHorses
.SetFocus
.Dropdown
End With
 

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


Top