"A dynamic link library (DLL) initialization routine failed" with filters and transitions

  • Thread starter Thread starter Joe Rattz
  • Start date Start date
J

Joe Rattz

I get a "A dynamic link library (DLL) initialization routine failed"
messagebox when pages attempt to access the filters property of an element.
For example, when viewing the MS sample page for filters and transitions:

http://msdn.microsoft.com/workshop/samples/author/dhtml/DXTidemo/DXTidemo.htm

If I select the Transitions radio button and press the play button, I get
the error in the code below:

function transStart(arg) {
var obj = getControlObject("oSelect");
var selectedValue=obj.options[obj.selectedIndex].value;
if (selectedValue != "empty") {
imgObj.filters[0].apply();
<---- Error occurs on this line.


If I merely try to add a watch on the imgObj.filters array property, I get
the same message in the Value field of the watch window too.

Anyone know what is wrong and what I need to do to fix it?

Thanks.
 
Tried it, but it did not solve the problem. Thanks. Anyone else got any
ideas?
H Leboeuf said:
Try this see if it helps.

Microsoft's Scripting download
Get the latest. Two download versions are available for Windows Script 5.6.
The first version requires Windows 2000, XP; the second version requires
Microsoft Windows 98, Millenium Edition (Me), or NT 4.0.
Choose the download appropriate for your operating system.
http://msdn.microsoft.com/library/default.asp?url=/downloads/list/webdev.asp

--

Henri Leboeuf
Web page: http://www.colba.net/~hlebo49/index.htm
===
Joe Rattz said:
I get a "A dynamic link library (DLL) initialization routine failed"
messagebox when pages attempt to access the filters property of an element.
For example, when viewing the MS sample page for filters and transitions:
http://msdn.microsoft.com/workshop/samples/author/dhtml/DXTidemo/DXTidemo.htm
If I select the Transitions radio button and press the play button, I get
the error in the code below:

function transStart(arg) {
var obj = getControlObject("oSelect");
var selectedValue=obj.options[obj.selectedIndex].value;
if (selectedValue != "empty") {
imgObj.filters[0].apply();
<---- Error occurs on this line.


If I merely try to add a watch on the imgObj.filters array property, I get
the same message in the Value field of the watch window too.

Anyone know what is wrong and what I need to do to fix it?

Thanks.
 
Back
Top