Damith
Damith

Reputation: 63105

Visual Studio Debugging

I have several threads running and I know currently one or many threads are active but it is difficult to find where exactly the execution is happening.

I'm running my application on debug mode, is there any way to break on current position? or any short cut or way to find current execution method (such as a keyboard shortcut or button within a toolbar)?

Edit:

Thanks for the answers, Found good article about VS 2010 debugging

Upvotes: 2

Views: 160

Answers (2)

tafa
tafa

Reputation: 7326

The Debug toolbar item has a button to break the execution of all threads (pause like button). enter image description here

If clicked the Threads windows (Debug->Windows->Threads [Ctrl+D,T]]) will list the threads and the location of their execution.

Upvotes: 1

Cedekasme
Cedekasme

Reputation: 2037

You can click on the menu Debug then Break.

Upvotes: 1

Related Questions