I'm working on an assignment in MFC. I added two edit boxes in my form,mixed something with the code involving with these edit boxes and removed it all later, including the edit boxes. And what happened, the compiler goes without errors, but when I debug it an "Unhandled exception at 0x00620c19 in voltmeter.exe: 0xC0000005: Access violation reading location 0xfefeff66" happens. I have gone through the code with the debuger and saw that the DoModal() function returnes -1, when it should return 1. And in the DoModal function in the line
LPCDLGTEMPLATE lpDialogTemplate = m_lpDialogTemplate;
the variable lpDialogTemplate doesnt change it's content, it always stays unfulfilled, and when it hits the line
if (lpDialogTemplate == NULL)
return -1;
it returnes -1, I think this is the problem, or maybe I'm wrong . Here is the link to download the program. http://rapidshare.com/files/446842749/voltmeter2.rar
Bookmarks