Link to home
Start Free TrialLog in
Avatar of dt19643063098
dt19643063098

asked on

Debugging with Dev Studio

I have a very large project and when I go to debug it, I always get stuck off in MFC code or the Disassembly.  Is there any option with the debugger that I can set to only debug the files that are currently in my project workspace and just run through all of the MFC code without debugging it.
ASKER CERTIFIED SOLUTION
Avatar of duneram
duneram

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of nietod
nietod

how do you get into this code?  
when you are debugging and are about to run a procedure, there are two options.  you can "step over the procedure" which runs the procedure and then stops on the next line of cude after the procedure.  Or you can "step ito the procedure" which calls the procedure  and stops on the first line of the procedure.

perhaps you need to be stepping over procedures rather than into them?
Avatar of dt19643063098

ASKER

I know that I can step over and I know that I can step out of something that I just got into, but I am looking for an option to only debug my source files.  I don't want to debug anything within MFC.  Based on these answers, I assume that there is not an option.
If you don't step into MFC procedures, you won't debug them.  Unless an exception occurs inside them, in which case you do want to debug them anyways.