LCKB
visual studio browser - Printable Version

+- LCKB (https://lckb.dev/forum)
+-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109)
+--- Forum: Programmers Gateway (https://lckb.dev/forum/forumdisplay.php?fid=196)
+---- Forum: Coders Talk (https://lckb.dev/forum/forumdisplay.php?fid=192)
+---- Thread: visual studio browser (/showthread.php?tid=1778)



- ReturnKratos - 04-02-2013


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