Auto Launch VBScript that can auto login w/ password

Posted by Wilson on Tue 14 Mar 2006 02:06 PM — 2 posts, 14,441 views.

#0
I would like to know whether I can create a VB Script that can auto login a website

It is okay for the auto launch feature with the following script

dim IE
set IE = CreateObject("InternetExplorer.Application")
IE.Navigate ("URL")
set IE = nothing

I can also make a "Shell" that mimic the keyboard that type in all the login name and password like this

dim Shell
set Shell = CreateObject("Wscript.Shell")
Shell.keysends ("Command")
set Shell = nothing

However, I would like to know whether there will be another way of doing this (Without using the Wscript.Shell)?

And in my case, after logging in the site, I have to "Click" several links to download data from the site. However, those links are written in JavaScript. Can I execute those JavaScript with VB Script? Or I need to use the Wscript.Shell function?
Australia Forum Administrator #1
I don't see the relevance of this question to MUSHclient.

Please Google the web for a suitable site that provides support for general VBscript questions.