Hi all,
Here's the facts.
I have a webbrowser that refreshes a page every 3 seconds and searches for the page title (WebBrowser1.Document.Title). If the title changes to something else, let's say "File not found" something else will happend.
I've done that using:
If WebBrowser1.Document.Title = "File not found" Then ...
BUT it will cost me alot of computer and internet resources to refresh it every 3 seconds and I only need the title. How can I do that ? Remember that I want to keep the webbrowser.
Here's the facts.
I have a webbrowser that refreshes a page every 3 seconds and searches for the page title (WebBrowser1.Document.Title). If the title changes to something else, let's say "File not found" something else will happend.
I've done that using:
If WebBrowser1.Document.Title = "File not found" Then ...
BUT it will cost me alot of computer and internet resources to refresh it every 3 seconds and I only need the title. How can I do that ? Remember that I want to keep the webbrowser.