02-17-2011, 02:37 PM
If u mean what i am thinking of, u can do this trick.
That will return a string of all text visible in webbrowser control.
If you want all HTML text, then use this
~redpois0n
Code:
WebBrowser1.Document.Body.InnerText
That will return a string of all text visible in webbrowser control.
If you want all HTML text, then use this
Code:
WebBrowser1.DocumentText
~redpois0n