|
-
July 12th, 2001, 10:59 PM
#1
how to write code to press the 'Enter' key (not manually press)? -thanks
how to write code to press the 'Enter' key (not manually press)? -thanks
-
July 12th, 2001, 11:05 PM
#2
Re: how to write code to press the 'Enter' key (not manually press)? -thanks
SendKeys "{ENTER}"
HTH
cksiow
http://vblib.virtualave.net - share our codes
-
July 12th, 2001, 11:22 PM
#3
Re: how to write code to press the 'Enter' key (not manually press)? -thanks
thanks a lot!!!
How to write code to press 'Ctrl' and 'C' key at the same time and also the arrow down key? thanks again.
-
July 12th, 2001, 11:38 PM
#4
Re: how to write code to press the 'Enter' key (not manually press)? -thanks
not sure, maybe sendkeys "^(C{DOWN})"
HTH
cksiow
http://vblib.virtualave.net - share our codes
-
July 13th, 2001, 12:25 AM
#5
Re: how to write code to press the 'Enter' key (not manually press)? -thanks
SendKeys "%C" 'Sends ALT+C
SendKeys "^C" 'Sends CTRL+C
SendKeys "+C" 'Sends SHIFT+C
Regards,
Michi
MCSE, MCDBA
-
July 13th, 2001, 09:46 AM
#6
Re: how to write code to press the 'Enter' key (not manually press)? -thanks
The MSDN HElp facility describes how to use Sendkeys for all the keyboard keys inclusinf Ctrl and Alt, Enter and combinations of keys.
John G
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|