hi
I want to simualte the press of these Keys:
Left (Arrow)
Right (Arrow)
Up (Arrow)
Down (Arrow)
Enter
I know I can use sendkeys.send() to send normal keys, but how to I simulate the press of these keys?
Thanks
Printable View
hi
I want to simualte the press of these Keys:
Left (Arrow)
Right (Arrow)
Up (Arrow)
Down (Arrow)
Enter
I know I can use sendkeys.send() to send normal keys, but how to I simulate the press of these keys?
Thanks
have you tried the normal way ( like it was in vb6 ) ? eg:
VB Code:
SendKeys.Send("{UP}") '/// up arrow SendKeys.Send("{DOWN}") '///down arrow SendKeys.Send("{LEFT}") '/// left arrow SendKeys.Send("{RIGHT}") '/// right arrow
thanks for that if works great,
just another question I have another program called app1.exe
I want my previous application, which uses the send keys function, to select thi app1.exe
how do I do this?