up vote 4 down vote favorite
share [g+] share [fb]

Is there some way to filter what files Visual Studio 2005 (C++) steps into?

For example, when stepping into

SomeFn( a.c_str(), b.c_str(), etc );

I hate how it steps into the standard template library files for c_str() - instead I just want to go into SomeFn().

If there was some way to filter out any source files didn't live in the same path as the solution file that would make my life easier.

Does anyone know a way? Thanks

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

This article describes how to solve it for VC6, VC7 and VC8.

link|improve this answer
This was what I was looking for (took me a while to figure out the syntax, but it is working for me now) – hamishmcn Nov 30 '09 at 8:18
feedback

I don't know if it's in VS2005 or not (I no longer have 2005 it installed on my machine), but VS2008 has a context menu item in the debugger when you right click: "Step Into Specific"

That option will let you choose which function to step into.

link|improve this answer
Nice - a way to do it on a case by case basis - works for VS2005 too – hamishmcn Nov 30 '09 at 8:17
I am finding this really useful - if I had a 2nd upvote I would give it :-) – hamishmcn Feb 19 '10 at 2:38
feedback

The approach in VS9 is very similar to the VS8-approach described by Kirill. More details at ffuts.org

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.