|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
VB Sendkeys
does anyone know the syntax for sending a combination of keys like ctrl+a or ctrl+c using sendkeys... coz im using a web control to load a page which has a frameset and i can manage to get the source only of the frameset not the pages of the frames so i used vbtab to goto that part of the page and need to copy the text content from thats section.. tried sendkeys vbKeyControl & "a" but its not working.... does anyone know a way to copy the contents off a web page loaded or to obtain the source of the page loaded with then frameset.. (i.e. the left and right pages) which are generated at runtime and do not have a direct html link
|
|
#2
|
|||
|
|||
|
To specify keys combined with any combination of the SHIFT, CTRL, and ALT keys, precede the key code with one or more of the following codes:
KeyCode SHIFT + CTRL ^ ALT % To specify that any combination of SHIFT, CTRL, and ALT should be held down while several other keys are pressed, enclose the code for those keys in parentheses. For example, to specify to hold down SHIFT while E and C are pressed, use "+(EC)". To specify to hold down SHIFT while E is pressed, followed by C without SHIFT, use "+EC". - John Last edited by mfr45 : January 8th, 2005 at 09:11 PM. Reason: Formatting |
![]() |
| Viewing: ASP Free Forums > Programming > Visual Basic Programming > VB Sendkeys |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|