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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Equivalent to AppActivat of Visual Basic in VB Script

Status
Not open for further replies.

sona123

Programmer
May 12, 2004
7
IN
Hi All,
Is there any equivalent of App activate or passing the keystrokes to an active window in VB Scripting as in Visual basic.

Thank You
Sona.
 
Dim wsh
Set wsh = Wscript.CreateObject("wscript.shell")
wsh.AppActivate title

where title is the caption of the application
Regards
Steve Friday
 
Hi Steve,
Thanks for your response , I have a web application where I have to send data from our webpage to another website .Do u have any clue how this could be accomplished if I use .wsf files. Can i put this .wsf file on our server and send data.

Also I have to send data to other website when I click on a button in .jsp page. Can I include this "Wscript.Createobject(.... " in that .jsp page to pass the data.

Can u suggest me a way as how to do this.

Thank you.
Sona.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top