B
Bob
Can the dropdown arrow be resized bigger than what it is?
Thanks in advance.........Bob Vance
Thanks in advance.........Bob Vance
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