04-02-2013, 02:58 PM
hay ive got this problem some idea hot to fix?
2
this img display the login page that i can see on google chrome but on internet explorer i cant... i will download a laest version of ie i let you know
i think i have solved..i have installed internet explorer 9
topic solved with this code
Dim PageElements As HtmlElementCollection = WebBrowser3.Document.GetElementsByTagName("a")
For Each CurElements As HtmlElement In PageElements
If CurElements.GetAttribute("title").Contains("Sign In") Then
Dim ids As String
ids = ids & CurElements.GetAttribute("id")
WebBrowser3.Document.GetElementById(ids).InvokeMember("click")
End If
Next

