hi i am making a prog for this game i play and to exit the game u r in u have to push the ` and the esc key at the same time and i was wondering if ne one could tell me how to go about doing this using sendkeys. thnx in advance
Printable View
hi i am making a prog for this game i play and to exit the game u r in u have to push the ` and the esc key at the same time and i was wondering if ne one could tell me how to go about doing this using sendkeys. thnx in advance
thnx for trying to help man but i need it to send the keys not me press the key and it do something after i press them.
So you're trying to use SendKeys from a VB program to send keystrokes to another program?
yes, i have done single sendkeys like for example if i want it to hit enter for me i type sendkeys "~", and it hits enter, but i dunno how to make it hit the ` and esc key at the same time. I have tried stuff like
sendkeys "`" + "{esc}"
sendkeys "`+{esc}"
sendkeys "`{esc}"
none of those seemed to work
Try SendKeys "(`{esc})"
tried it didnt work :(