debug assertion failed
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
:confused:i tried to register a .dll and i got the the following error : Debug Assertion Failed! Program:......REGSVR32.EXE File: OLEFACT.CPP Line: 122 can anybody help me out of what is the problem pavan
-
:confused:i tried to register a .dll and i got the the following error : Debug Assertion Failed! Program:......REGSVR32.EXE File: OLEFACT.CPP Line: 122 can anybody help me out of what is the problem pavan
Debug assertions typically aren't compiled into release code, so this likely is in the DLL rather than regsvr32.exe. As well, olefact.cpp is an MFC file, so likely not part of regsvr32.exe. Try running the whole thing under the debugger so that you can break when the assertion trips and look at the call stack. Brad