Dropdown Arrow Resize?

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

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

Thanks in advance.........Bob Vance
 
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
 
Douglas , my Dropdown combo box is cbActiveHorses
I created a command button what would be the code I should enter on click
thanks Bob
 
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
 
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
 
Back
Top