vote up 3 vote down star

I'm debugging a (web) project in Visual Studio 2008. I'm hitting a breakpoint. F10 continues to the next line, as expected, but the next F10 just stops debugging and the code continues without any more debugging (like pressing F5). Why is this happening?

  • I have tried 'clean solution'.
  • Other breakpoints sometimes(!) skipped, even in the same method

Any clues?

flag

8 Answers

vote up 6 vote down check

It is probably because you do not have the update kb 957912 for Visual Studio 2008. That fixed the same issue on my machine.

link|flag
Thanks!! I'll install and report back – edosoft May 20 at 8:02
Fixed the problem for me. Most appreciated – Arne Claassen Jul 28 at 18:51
Thanks for the solution, worked for me. – Carra Dec 7 at 15:21
here's the link for the fix (Visual Studio 2008) code.msdn.microsoft.com/KB957912 – adambox Feb 24 at 19:11
vote up 1 vote down

F10 is Step Over. This means that any methods called by your current method will not be shown in the debugger. If these throw an uncaught exception or somehow end execution, debugging will just end, which would result in what you are experiencing.

F11 (Step Into) is usually a better idea when stepping through code.

link|flag
He didn't say he wants to step in - he said he wants to step over. Saying F11 is better than F10 is just not right. – TheSoftwareJedi May 19 at 23:07
@TheSoftwareJedi: Really? Did you read the question name? "Why does F10 (continue) in Visual Studio not work?" The reason being because F10 isn't Continue. – Powerlord May 20 at 13:32
vote up 0 vote down

Make sure that you're in Debug mode not in Release.

link|flag
Checked this, thanks. – edosoft May 19 at 11:21
vote up 0 vote down

Without knowing more about your application it's difficult to say, but usually this sort of thing happens when the process starts a thread or otherwise goes into code where there isn't any debug information.

link|flag
vote up 0 vote down

and make sure your code is reachalbe

link|flag
and you can use even F11 – Ada May 19 at 10:58
vote up 0 vote down

There could be an exception while executing the instruction in question. Try enabling all exceptions to break into debugger and check.

link|flag
vote up 0 vote down

Hi

It almost sounds like you have the default settings for your debugging. If you go to: Tools
- Options - Debugging Under the general section there is a option to "Enable Just My Code" By default that is checked, if you uncheck that you should be able to step into the code that you want to see.

Without knowing more about your project and code that you reference, this is my best guess as to why you can’t step into the code.

Hope it helps Rihan

link|flag
vote up 0 vote down

It might be stepping over the last executing code in the thread or somehow it's going back to the UI thread. If it's a GUI app, try doing something that invokes an event handler and see if it breaks on the next execution.

link|flag
It's a web app – edosoft May 20 at 8:03
ah I see, I don't know then – Davy8 May 20 at 12:41

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.