I'm working with an embedded (Active X?) instance of IE within a VB6 application.
The browser displays demographic information based off the selected person (displayed as a list).
Everything works great until I try to quickly select different people from the list (clicking randomly over different people as fast as I can). After a few clicks, get two errors.
The first is an "Internet Explorer Script Error"
It says:
An Error has occurred in the script on this page
Line:
Char:
Error:
Code:
URL:
Do you want to continue running scripts on this page? yes|No
(Line, Char, Error, Code, URL are all blank).
The second error pops up directly over the first.
It says:
"Message from webpage
An error has occurred in this dialog
Error:53 Permission denied"
The page makes multiple ajax calls and also contains several iFrames (I'm thinking these are the cause).
Any advice on how to debug / resolve / avoid the problem would be most appreciated.
Thanks!
EDIT
Here is an image of the error
EDIT
I get a JScript anonymous function, No source available when I do happen to catch the error.
EDIT
I've successfully caught some of the errors. It seems that they are stemming primarily from MicrosoftAjax.js
- Occurs Consistently: MicrosoftAjax.js - Sys._Application.callBaseMethod(this,"initialize"); Object Expected
- Occurred Once: jquery-1.4.2.min.js - b.InsertBefore(d,b.firstChild) Object Expected
- Occurred Once: Out of Memory Exception.
My host application is not using MicrosoftAjax.js at all, but the child iFrame applications are all asp.Net applications.