I have modified one of the VBscripts to run a Web page as shown below:
VBSTART
Dim IE
Sub CreateIE
Set IE = CreateObject("InternetExplorer.Application")
IE.visible = 1
End Sub
Sub Navigate(URL)
IE.navigate URL
End Sub
Sub WaitBusy
do while IE.Busy
loop
End Sub
Sub DestroyIE
IE.Quit
Set IE = Nothing
End Sub
VBEND
VBRun>CreateIE
VBRun>Navigate,http://www.mysite.com/admin/clients/email/auto_send.asp
VBRun>WaitBusy
VBRun>DestroyIE
-----------------------
I get the following error message:
Microsoft VBScript compilation error 1002
syntax error
Line 25, Column 5
------------------------
What's the problem?
Thanks
VBscript Error - HTTP
Moderators: JRL, Dorian (MJT support)
- Bob Hansen
- Automation Wizard
- Posts: 2475
- Joined: Tue Sep 24, 2002 3:47 am
- Location: Salem, New Hampshire, US
- Contact: