How to click link like this?

discodave

Regular Member
Joined
Nov 2, 2009
Messages
250
Reaction score
113
How to click this one in vb6?
Code:
<a href="../docs/report.doc" onclick="return download('content_index');">Download!</a>
 
Last edited:
Posted via Mobile Device[/size

sorry tried to help u with it.phone su 4a362305850e793fa0451b3228283ed6883ae6a3

cks . Will post when I'm around a pc
 
Last edited:
Code:
    Set colLinks = WebBrowser1.Document.All.tags("A")
    For Each colCurrentLink In colLinks
        List1.AddItem colCurrentLink
    Next colCurrentLink

instide of adding the link to the colcurrentlink list box, just have the browser direct to that link.
 
Loop through all element on the page,Then within that loop use the instr function to look for the innerhtml of the element.Once found,Simply issue a .click.
 
Back
Top