Code for Visual Basic to interact with Internet Explorer?

walsrobert13

New member
Joined
Feb 12, 2009
Messages
1
Reaction score
0
Points
1
The current code I have is shown below, I can get VB to go the the website, however, I am stuck at that point. I need this to enter data in a certian area and then click the next button.

Dim ie As Object
Dim form_item As Object

Dim Login As String




Set ie = CreateObject("InternetExplorer.application")

'make internet explorer visible
ie.Visible = True

'navigates to page with form
ie.Navigate ("www.google.com")
 
Back
Top