How can I click the link to navigate to the link.
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
Hi All I am using a WebBrowser control to navigate to sites in my VB.Net application. After navigating I want to Navigate to some of the links in it depending on some conditions. Can anybody advise how can I collect the links contained in the WebBrowser Document and how can I Raise a click event for a collected link so that it automatically navigates to the link. I have written the code as bellow : Dim link1 As mshtml.HTMLLinkElement link1 = WebBrowser1.Document.Links(10) Now How can I click the link link1 to navigate to the link. Please Help. Thanks in advance.
Sekhar :)