Combo drop down button enlarge (1 Viewer)

me1258

Registered User.
Local time
Today, 05:47
Joined
Apr 6, 2004
Messages
37
HI
I am working on a touch screen app. I need to make the drop down arrow in a combo box bigger so the user can choose it easier. Any ideas on how to do that. I could just put a transparent button over the top and make it bigger but I don't know how to call the click even for the combo box. I have tried some of the code below and it will not work.

Below I was trying to make a button so that when you clicked on it that it would create the same action as clicking on the combo box drop down list.

I don't really care how I accomplish this task the user just needs a bigger target to hit with their fat little fingers :>

the code below doesn't work obviously.

Thanks

Code:
Private Sub cboCahsier_Click()
' this is the name of the combo box
End Sub

Private Sub cmdCBOCashier_Click()

Call cboCahsier_Click()

End Sub
 

jkl0

jkl0
Local time
Today, 06:47
Joined
Jun 23, 2006
Messages
192
In the On Click of your command button:
Me.cboCahsier.SetFocus

In the Got Focus of your combo box:
Me.cboCahsier.Dropdown
 

me1258

Registered User.
Local time
Today, 05:47
Joined
Apr 6, 2004
Messages
37
Thanks

Sweet :)
thank you I will try it.
 

Users who are viewing this thread

Top Bottom