Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Use VB Script to Automate UT Login
Message
 
To
07/02/2002 07:39:39
General information
Forum:
Level Extreme
Category:
Other
Miscellaneous
Thread ID:
00320576
Message ID:
00616624
Views:
23
Terry,

Try to modify this code below. It's from a article that I wrote that for the VFUG newsletter:
Option Explicit
Dim oIE 
Set oIE = CreateObject("InternetExplorer.Application") 
oIE.Navigate("www.vfug.org")
' Pause the script for 1 second
WScript.Sleep 1000 
Do 
Loop Until oIE.Document.ReadyState = "complete" 
oIE.Document.Forms(0).UID.Value = "myusername" 
oIE.Document.Forms(0).PW.Value = "mypassword" 
oIE.Document.Forms(0).Submit 
oIE.Visible = True 
Set oIE = Nothing
George

Ubi caritas et amor, deus ibi est
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform