Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

what is: 0xE06D7363: Microsoft C++ Exception

Status
Not open for further replies.

golyg

Programmer
Jul 22, 2002
319
US
When I attempt to debugg my app I receive the following message and my app never starts:

[error]
Warning: CreateDlgControls failed during dialog init.
First-chance exception in <appName.exe> (KERNEL32.DLL): 0xE06D7363: Microsoft C++ Exception.
The thread 0x644 has exited with code 0 (0x0).
The thread 0x538 has exited with code 0 (0x0).
The program '\appName.exe' has exited with code 0 (0x0).
[/error]

I've worked on some dialogs in the app but not the initial screen...arghhh...struggles continue


any ideas?
 
it means you have some errors in object constructors or in OnCreate/WM_CREATE handlers. Put breakpoints in that methods and press f5.

Ion Filipski
1c.bmp
 
You could also set it up to automatically break at the point the exception is thrown, and analyze the call stack at that point. Then you don't need to mess around with breakpoints.

Select menu option "Debug->Exceptions", then select "C++ Exceptions" and set "when the exception is thrown" to "break into the debugger".
 
I see where its being thrown but I have no idea why or how to even go about fixing this little problem (actually big..)

thanks
 
are you familar with the vc++ function call: CreateDialogIndirect?


thanks

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top