sooprise
sooprise

Reputation: 23187

Visual Studio Stops, Goes To Debug Mode, But I Don't Know Which Line It Is Paused At

I have a strange problem with Visual Studio. I imported an existing project into a solution and now when I run it, it stops running and goes into debug mode. The problem is that while in debug mode, there's no yellow highlighted line indicating where the code has stopped.

Any suggestions?

Upvotes: 3

Views: 439

Answers (3)

SKINDER
SKINDER

Reputation: 1020

Go to Debug->Windows->Call Stack and double click on the top line in Call Stack window.

Upvotes: 3

Ian Jacobs
Ian Jacobs

Reputation: 5501

Is the stack trace window up? That should show where you're paused too.

Upvotes: 0

barrylloyd
barrylloyd

Reputation: 1589

Right click in any code window and choose Show Next Statement - this should magically take you there!

Upvotes: 1

Related Questions