You are on page 1of 1

Sub WebLogin()

Dim a As String
On Error GoTo Err_Clear
Set ie = CreateObject("InternetExplorer.Application")
With ie
.Visible = True
.navigate "http://www.finstation.in"
Do Until .readyState = 4
DoEvents
Loop
.document.all.Item("loginusername").Value = "Username"
.document.all.Item("loginuserpassword").Value = "Password"
.document.forms(0).submit
End With
Err_Clear:
If Err <> 0 Then
Err.Clear
Resume Next
End If
End Sub
====================

You might also like