My web crawler is encountering VISUAL STUDIO JUST-IN-TIME DEBUGGER errors when loading this page in a webbrowser control:
http://www.wyomingtourism.org/
This is throwing an error dialog box which stops processing despite setting ScriptErrorsSuppressed=true. The title bar says:
VISUAL STUDIO JUST-IN-TIME DEBUGGER
And the error is:
An unhandled exception occurred ("FB" is undefined)...
I don't really care whether the state of WY has an error on their page and I am certainly not interested in debugging the thing. I just want it to stop displaying this pesky error box because the crawler stops processing and I have to manually click the NO button on this dialog box just to continue. I've tried killing the box in another process running at the same time using DESTROYWINDOW API call and while it can find the debugger window, it seems unable to close it so the crawler can continue.
Do I really have to babysit this thing just to hit the close button every time this dialog box pops up, or can somebody recommend a solution that actually works (as opposed to the myriad examples I can find that do not?)