Debug Assertion Failed????
-
Hi, I am developing an Aplication to watch/manage my IDS Nodes. It runs fine when I run in Release mode. Once I go to Debug I get the Assertion. // Dispatch commands specified on the command line if (!ProcessShellCommand(cmdInfo)) return FALSE; Any help appreciated... Thanks in advance, Dan
-
Hi, I am developing an Aplication to watch/manage my IDS Nodes. It runs fine when I run in Release mode. Once I go to Debug I get the Assertion. // Dispatch commands specified on the command line if (!ProcessShellCommand(cmdInfo)) return FALSE; Any help appreciated... Thanks in advance, Dan
Where is the assert that's failing. An assert means you have a bug in your code; look for comments at the assert to tell you what it's checking for. --Mike-- http://home.inreach.com/mdunn/ While I can't be correct on all matters, I can make the reassuring claim that where I am inaccurate, I am at least definitively inaccurate. :love: your :bob: with :vegemite: and :beer: Sonork - 100.10414 AcidHelm
-
Where is the assert that's failing. An assert means you have a bug in your code; look for comments at the assert to tell you what it's checking for. --Mike-- http://home.inreach.com/mdunn/ While I can't be correct on all matters, I can make the reassuring claim that where I am inaccurate, I am at least definitively inaccurate. :love: your :bob: with :vegemite: and :beer: Sonork - 100.10414 AcidHelm
I sent you the Assertion I am getting in a seperate mail. It is failing on...(BTW, this is a SDI Application) // Dispatch commands specified on the command line if (!ProcessShellCommand(cmdInfo)) return FALSE; This doesn't mean it is not my code, but it won't let me debug to find the Assertion...any ideas?? Thanks in advance, Dan
-
I sent you the Assertion I am getting in a seperate mail. It is failing on...(BTW, this is a SDI Application) // Dispatch commands specified on the command line if (!ProcessShellCommand(cmdInfo)) return FALSE; This doesn't mean it is not my code, but it won't let me debug to find the Assertion...any ideas?? Thanks in advance, Dan
Click Retry when you get the assert-failed message box to drop into the debugger. --Mike-- http://home.inreach.com/mdunn/ While I can't be correct on all matters, I can make the reassuring claim that where I am inaccurate, I am at least definitively inaccurate. :love: your :bob: with :vegemite: and :beer: Sonork - 100.10414 AcidHelm
-
Click Retry when you get the assert-failed message box to drop into the debugger. --Mike-- http://home.inreach.com/mdunn/ While I can't be correct on all matters, I can make the reassuring claim that where I am inaccurate, I am at least definitively inaccurate. :love: your :bob: with :vegemite: and :beer: Sonork - 100.10414 AcidHelm
It has arrived to me a short time ago. The program crashed at the return of a function. I only checked the "link incrementaly" option in debug mode. If it works in release mode...your code is probably not the probleme.