|
-
September 23rd, 2005, 06:52 AM
#1
crash with not much information
Hi,
When you click F12 in my application: Unhandled exception at 0x7c901230 in Alba.exe: User breakpoint.
The call stack gives only
Code:
> ntdll.dll!7c901230()
ntdll.dll!7c9507a8()
I don't know where I have to look for this?
greets,
Tim
-
September 23rd, 2005, 06:55 AM
#2
Re: crash with not much information
Are you running a debug build of your application?
-
September 23rd, 2005, 06:56 AM
#3
Re: crash with not much information
the crash occurs in debug and release versions
-
September 23rd, 2005, 06:56 AM
#4
Re: crash with not much information
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
-
September 23rd, 2005, 07:01 AM
#5
Re: crash with not much information
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)
-
September 23rd, 2005, 07:06 AM
#6
Re: crash with not much information
 Originally Posted by golanshahar
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
That's what I tried, but there seems to be no way I can get into the code to debug it.
Marc G: That might be the reason. Thanks alot.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|