Is there any way I can do to let the menu slide down "instead of clicking with the mouse" . Sounds easy but can't figure it out . Thanks
:)
Printable View
Is there any way I can do to let the menu slide down "instead of clicking with the mouse" . Sounds easy but can't figure it out . Thanks
:)
Hi Pirate.
For example, you could use sendkeys to send ALT+F to you own app. to open the Filemenu.
VB Code:
SendKeys.Send("%F")
Thanks . Works good . :D
what sendkey would you do to simulate the clicking of the drop-down arrow on a combo box?
I'm not sure but I've tried different keys (ALT , Enter ..) but didn't work . :rolleyes:Quote:
Originally posted by thephantom
what sendkey would you do to simulate the clicking of the drop-down arrow on a combo box?
combobox drop down is easy ;)
:pVB Code:
ComboBox1.Focus() SendKeys.Send("%{DOWN}")
cool! that worked!