error in page for webbrowser control
Hello,
I am navigating to a web page with my webbrowser control
Dim myWBP As New WebBrowser
myWBP.Navigate(strThePageToOpen)
and this works on most pages. Now I'm going to a page that I guess there are errors in the page and I get a box asking me if I want to debut in IE's built in script debugger or something to that effect.
Is there any way to have the system ignore this message and continue to load the page as normal as I just click cancel it continues to load the page with no problem
Thanks again for all your assistance.
Mythos
Re: error in page for webbrowser control
you can try this, use it before you load the page:
Code:
myWBP.Silent = True
Re: error in page for webbrowser control
It says silent is not a member of the webbrowser.
Re: error in page for webbrowser control
Okay found it
myWBP.ScriptErrorsSuppressed = True
This works great thank you so much.