Click here to Skip to main content
15,867,851 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
Dear friends, I have a problem:
When the program runs to:
C++
>_di_IXMLNodeList list = LoadXMLDocument ( " XML\\xx.xml " ) ->DocumentElement->ChildNodes->FindNode ( " XXX " ) ->ChildNodes;

Note: Project XX.exe raised exception class EOleSysError with message ' dynamic link library DLL initialization routine failed. ' Process stopped.
How to solve?
Also that is a C++ Builder Project
Posted
Updated 30-Aug-12 17:21pm
v2
Comments
Volynsky Alex 23-Aug-12 7:10am    
Try read the following post:
http://blogs.msdn.com/b/tess/archive/2009/04/29/unable-to-load-dll-dllname-dll-a-dynamic-link-library-dll-initialization-routine-failed-0x8007045a.aspx
dragon9098 15-Jun-14 23:53pm    
Thank you very much!
Volynsky Alex 16-Jun-14 4:10am    
You're welcome
Sergey Alexandrovich Kryukov 23-Aug-12 15:18pm    
The code does not look like C++ -- see the beginning of the line. Did you just screw up some HTML formatting?
--SA
dragon9098 16-Dec-12 20:42pm    
I'm so sorry.that is a C++Builder project.

1 solution

If this code is where your DLL is loading, you probably get that error because the MSXML.DLL cannot load into your process at the same time as another DLL (in this case your own DLL) is loading.

This happens a lot with new developers - everything ends up at 'dll load time' and then they discover that only a single DLL can load at a time in Windows, because of the DLL loader lock. You might have to try refactoring your code, if that is the case, and let your DLL load and THEN call some other function you expose from the DLL which is processing the XML data.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900