Measurement Studio for VC++

cancel
Showing results for 
Search instead for 
Did you mean: 

newbie, debug for VC++

first of all, i am a new dude to the vc++ debugger

I want to know if there is a way to trace the flow of a program which has
'void' within a program. for example, if i the program has a main() which
has many classes and functions.... will the degugger of vc++ directs me into
those functions and show me how the data are changed the moment the program
is ran? i know i can do a Step-Into or Step-Over to see the change, but
they only show the step in main(), not into the void and classes. could
someone be so kind to show me where i can find those information (or how it
can be done?) my demostrator has about thousands lines and it would be nice
to see the mechanism of it as a debug execise.

Thank you.
0 Kudos
Message 1 of 2
(2,781 Views)
You will need to "Step Into" your class ctor (short for constructor) or any of your class's member functions. If you are not instantiating an object of a particular class you want to debug, you will never get to any of it's code. If nothing I said there makes sense to you, you may want to check out some programming sites like www.codeproject.com for some basics on C++. Hope that helps.
0 Kudos
Message 2 of 2
(2,781 Views)