in debug i got
First-chance exception in MainApp.exe (APPRES.DLL): 0xC0000005: Access Violation.
what's that ?
Printable View
in debug i got
First-chance exception in MainApp.exe (APPRES.DLL): 0xC0000005: Access Violation.
what's that ?
a 0xC0000005 error is indicative of a bad pointer or uninitialized value. Have you tried stepping through the code in the debugger? You should be able to use the stack trace to determine the flow and state of the code and variables.
yes i did debug
and this error i got there
Have you tried looking at the variables, pointers, etc. that could have bad values? This type of error is going to require you to step though each line of code and verify that the values you are expecting are accurate.
Hi WU,
You may also want to read a bit about First and Second Chance Exceptions.
Jeff