Can you use sendkeys to send the tab, ctrl, alt, buttons? Or do you have to use a different command?
Printable View
Can you use sendkeys to send the tab, ctrl, alt, buttons? Or do you have to use a different command?
yes
SendKeys "{Tab}"
SendKeys "^" 'This is Ctrl
SendKeys "%" 'This is Alt
SendKeys "^%({Del})" 'Sends Ctrl+Alt+Delete
Thanks.
what would be enter?
SendKeys "{Enter}" or SendKeys "~"
Check this site out here: http://www.developerfusion.co.uk/show/57/
When i use SendKeys "^%({Del})" it doesn't work.
put in +
I think thats works...
nevermind, that doesnt work either... It works for ("^" + "t")
Ive never tried doing Ctrl+Alt+Delete, but if its not working then i think you gotta go onto more complicated measures.. I think sending any more then 2 keys at the same time requires some API
There are just certain key combinations (and certain keys) that can't be "sent".