Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Use VB Script to Automate UT Login
Message
 
À
07/02/2002 07:39:39
Information générale
Forum:
Level Extreme
Catégorie:
Autre
Divers
Thread ID:
00320576
Message ID:
00616624
Vues:
24
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform