|
-
March 21st, 2012, 11:05 AM
#1
debug dll not working
I have an extension dll. when I am building the dll in release mode, and call from the client mfc application it's launching, but when I am bulding the dll in debug mode and loading from client mfc application it's not launching giving error
//////////////////////////////////////////
debug assertion failed.
program:
file: f:\dd\cvtools\vc7libs\ship\atlmfc\src\mfc\appcore.cpp
line: 451
For more information on how your program can cause assertion failure, see visual c++ documentation on asserts
(Please retry to debug the application)
//////////////////////////////////////////
Please help me why this error is coming I am trying to launch the dll like this
Code:
hinstLib = LoadLibrary(L"C:\\Users\\sujan.dasmahapatra\\Documents\\Projects\\Bhagavan_SurfaceRevolution\\View inside a Dialog\\package\\RevolutionDLL\\debug\\dlltest.dll");
when there is 'release' instead of debug it's working fine. Please help.
-
March 21st, 2012, 11:51 AM
#2
Re: debug dll not working
 Originally Posted by sujan.dasmahapatra
//////////////////////////////////////////
debug assertion failed.
program:
file: f:\dd\cvtools\vc7libs\ship\atlmfc\src\mfc\appcore.cpp
line: 451
For more information on how your program can cause assertion failure, see visual c++ documentation on asserts
(Please retry to debug the application)
//////////////////////////////////////////
So, did you retry to debug the application? If not then why? 
Press the Retry button to see what happend in the appcore.cpp file around line: 451.
Victor Nijegorodov
-
March 21st, 2012, 11:59 AM
#3
Re: debug dll not working
So that means that you have a bug that the debug build helps you catch. Lucky you! It's more often the other way around.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|