Click here to Skip to main content
15,899,124 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm using visual studio 2005. i wanna debug so i want to know where the program goes next?. i know there is a command "stepin" which goes forever.... time consuming. i want the progrma to go to the next class every time i press. so How can i do that...

My question is again how do i know where the progrma next goes. or whcih class it next goes i dont want it to go every single method of evry class.
Posted

Best way is, search on here.

This is a very basic question and you need to learn more in Visual Studio.

Thanks
Rushi
 
Share this answer
 
How about reading the manual[^]?
Set (conditional) breakpoints, step in or over code, use the Debugger Class[^]...
Other than that your question is a bit unclear to me...
 
Share this answer
 
Place breakpoints where you do want the application to stop at. Then when you debug it will only stop at those locations and you can move on from one to the other by pressing F5.
 
Share this answer
 
set breakpoints where you want the application to stop and in debugging mode when application break on that line press F10 for line by line debugging.

you can place several breakpoint where you want and press F5
 
Share this answer
 
for debugging use F10 for line by line debugging
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900