Hi All,
I wrote this coding wih help of my friend.This is to automate sytsem monitoring.
Sub JAVA()
Dim ie As Object
Dim rc As Integer
Set ie = CreateObject("InternetExplorer.Application")
ie.Visible = True
ie.Navigate "http://"
'wait until the page loads
Do While ie.ReadyState <> 4
DoEvents
Loop
ie.Visible = True
With ie.document
.getElementById("j_username").Value =
.getElementById("j_password").Value =
.getElementById("logonForm").submit
End With
End Sub
Till this everything is working fine .I need to add few more line for validating,successful logon cell has to show green if not login to url the cell should turn red.please help me to complete this.
Bookmarks