Hi,
When you click F12 in my application: Unhandled exception at 0x7c901230 in Alba.exe: User breakpoint.
The call stack gives onlyI don't know where I have to look for this?Code:> ntdll.dll!7c901230()
ntdll.dll!7c9507a8()
greets,
Tim
Printable View
Hi,
When you click F12 in my application: Unhandled exception at 0x7c901230 in Alba.exe: User breakpoint.
The call stack gives onlyI don't know where I have to look for this?Code:> ntdll.dll!7c901230()
ntdll.dll!7c9507a8()
greets,
Tim
Are you running a debug build of your application?
the crash occurs in debug and release versions
well put a break point in the F12 notification ( probably WM_KEYDOWN ) and press F12 and step into using debuger to see what causing the crash.
sound like pretty simple thing to find if its happen on whenever you press F12. ;)
Cheers
Actually, that is normal behaviour. F12 breaks the execution of your program in Visual Studio when the debugger is active.
Try to run your application without visual studio debugger and press F12, it shouldn't crash.
(see http://support.microsoft.com/default...;EN-US;q130667)
That's what I tried, but there seems to be no way I can get into the code to debug it.Quote:
Originally Posted by golanshahar
Marc G: That might be the reason. Thanks alot.