Software error running a Visual C++ application
-
I've done a speech application in Visual C++ 6 and it builds ok but when I run it I get this error message: Debug Error! DAMAGE:after Normal block (#68) at 0x00374420. Please Retry to debug the application. And it gives me Cancel, Ignore or Retry options. If I Retry in that MessageBox, I get the error: unknown software exception (0x80000003) in direction 0x1021376f I've installed SAPI 4 and TTS L&H 3000 and I don't know why I get this software exception (I think these are the software what I have to install so my application runs). Any suggestion? What's wrong? How could I find the trouble in the code? Thank in advance! I have no idea :doh:
-
I've done a speech application in Visual C++ 6 and it builds ok but when I run it I get this error message: Debug Error! DAMAGE:after Normal block (#68) at 0x00374420. Please Retry to debug the application. And it gives me Cancel, Ignore or Retry options. If I Retry in that MessageBox, I get the error: unknown software exception (0x80000003) in direction 0x1021376f I've installed SAPI 4 and TTS L&H 3000 and I don't know why I get this software exception (I think these are the software what I have to install so my application runs). Any suggestion? What's wrong? How could I find the trouble in the code? Thank in advance! I have no idea :doh:
satcat wrote: How could I find the trouble in the code? The SDK contains some functions to help with problems like these, I never use them. There are articles at codeproject on this subject. You could download a demo version of one of the memory validator programs: There's an add for "Memory Validator" at codeproject some where, I use "Bounds Checker". I recommend the book "Programming Applications for Microsoft Windows", must have for advanced programming. Good luck! INTP
-
I've done a speech application in Visual C++ 6 and it builds ok but when I run it I get this error message: Debug Error! DAMAGE:after Normal block (#68) at 0x00374420. Please Retry to debug the application. And it gives me Cancel, Ignore or Retry options. If I Retry in that MessageBox, I get the error: unknown software exception (0x80000003) in direction 0x1021376f I've installed SAPI 4 and TTS L&H 3000 and I don't know why I get this software exception (I think these are the software what I have to install so my application runs). Any suggestion? What's wrong? How could I find the trouble in the code? Thank in advance! I have no idea :doh:
satcat wrote: DAMAGE:after Normal block (#68) at 0x00374420 That means you allocated a block of memory, then wrote past the end of the block. --Mike-- Ericahist | CP SearchBar v2.0.2 | Homepage | 1ClickPicGrabber New v2.0.1! | RightClick-Encrypt There is a saying in statistics that a million monkeys pounding on typewriters would eventually create a work of Shakespeare. Thanks to the Internet, we now know that this is not true.
-
satcat wrote: DAMAGE:after Normal block (#68) at 0x00374420 That means you allocated a block of memory, then wrote past the end of the block. --Mike-- Ericahist | CP SearchBar v2.0.2 | Homepage | 1ClickPicGrabber New v2.0.1! | RightClick-Encrypt There is a saying in statistics that a million monkeys pounding on typewriters would eventually create a work of Shakespeare. Thanks to the Internet, we now know that this is not true.