Can someone tell me how to get the links from the axWebBrowser1
mshtml.IHTMLDocument2 doc = (mshtml.IHTMLDocument2) axWebBrowser1.Document;
Thanks for the help
Printable View
Can someone tell me how to get the links from the axWebBrowser1
mshtml.IHTMLDocument2 doc = (mshtml.IHTMLDocument2) axWebBrowser1.Document;
Thanks for the help
no one knows the web broswer control?
Something like this?
Code:IHTMLElementCollection colLinks = wbrBrowser.Document.body.All.tags("a");
cool that got me on the right track. thanks
You're welcome. :)