What do I do about WebBrowser Errors?

While using the ActiveX Web Browser I visited the website turnerclassicmovies.com

It triggered this error:



I decided to visit the site in a normal IE window and down in the status bar it does say that there is an error on the page. I guess it's the website. Is there any way to stop the big ol' pop up from appearing when using an activeX browser. I can close the pop up and continue as normal but it is rather annoying.

Thanks.
2,124 views 6 replies
Reply #1 Top
Yeah that error is page-specific and, as far as I know, there is no way to code the error out via DesktopX - You would have to use Internet Explorer's Settings, either in Custom Level security or in the Advanced settings - try looking for "Scripts" or "ActiveX" sections and it may be there I am unable to check at min as using locked-down systems at work - will get back to you on where exactly to find these settings. Have a play around in IE's settings see what you can find.
Reply #2 Top
IE = tools - internet options - advanced - try unchecking "display a notification about every script error'
Reply #3 Top
I have faced with such situation some time ago and solved the problem by usage of one simple command:

Sub Object_OnScriptEnter
'your web browser settings....
'.............................
control.Silent = True '<== Try to add this line into web browser object.
End Sub

Best Regards
Reply #4 Top
Is this place great or what?
Reply #5 Top
Yep. Only one of its kind.
Reply #6 Top
Thank you very much Vad_M, it worked. Thanks everybody. Gotta love this place.