BIG OR LITTLE QUESTION?
-
Here is the message from VC Debug tool ,Can somebody tell me What does it mean?:eek::eek: First-chance exception in DMSClient.exe (KERNEL32.DLL): 0xE06D7363: Microsoft C++ Exception. SIMPLE IS BEAUTY
ZBUILDER wrote: First-chance exception in DMSClient.exe (KERNEL32.DLL): 0xE06D7363: Microsoft C++ Exception. What does it mean? Some code in Kernel32.dll threw an exception. That is the meaning of that line, and as you choose not to give more information about the context, it is about all one can say about it.
-
Here is the message from VC Debug tool ,Can somebody tell me What does it mean?:eek::eek: First-chance exception in DMSClient.exe (KERNEL32.DLL): 0xE06D7363: Microsoft C++ Exception. SIMPLE IS BEAUTY
A first-change exception normally is not a problem: it's the debugger's opportunity to see an exception before it is being handled by an exception handler (or catch-block). If no exception is propagated to your code, that means the writer of the library has foreseen the possibility of this exception and written an appropriate catch-block. So don't worry about it.
-
A first-change exception normally is not a problem: it's the debugger's opportunity to see an exception before it is being handled by an exception handler (or catch-block). If no exception is propagated to your code, that means the writer of the library has foreseen the possibility of this exception and written an appropriate catch-block. So don't worry about it.