Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can i use Sendkey method of VB in VBscript

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hi All

i want to create a multi language editer in vbscript.
Can i use The send key method of VB In vbscript

Kitan Thomas
Kiran@spectrum.net.in
 
Hi Kitan,

No, but you can use the SendKeys method of the Windows Script Host, for example:

set WshShell = CreateObject("WScript.Shell")
WshShell.SendKeys "%A"

will send ALT+A to the UI.

HTH mikey2nicey

"Dream, but don't quit your day job."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top