Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Filling in a form
Message
From
20/11/2001 11:42:17
 
General information
Forum:
Visual Basic
Category:
Internet applications
Miscellaneous
Thread ID:
00583794
Message ID:
00583991
Views:
20
>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.
Previous
Reply
Map
View

Click here to load this message in the networking platform