Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Filling in a form
Message
De
20/11/2001 11:42:17
 
Information générale
Forum:
Visual Basic
Catégorie:
Applications Internet
Divers
Thread ID:
00583794
Message ID:
00583991
Vues:
22
>Hi,
>
>I need some code to fill in Web-form using a VB-application. I want to log in onto serveral pages, stored in a database.
>
>Greets Piet,

Do you mean fill in an HTML form from VB? Check this script that logs you in automatically to the UT:
Set oIE = CreateObject("InternetExplorer.Application")
oIE.Visible = True
oIE.Navigate("www.levelextreme.com")
while oIE.Busy:  wend  ' wait for page to load...
oIE.Document.All("Key").value="YourUserNameHere"
oIE.Document.All("Password").value="YourPasswordHere"
oIE.Document.Forms(0).Submit
Hope this helps.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform