autoexp.dat does not seem to take affect in Visual Studio C++ 2005 debugger. I am not trying to add any custom rules. Just want commonly used stuff like stl::string, to display in a friendlier manner. Does anyone know. how I can accomplish this? Is this just question of specifying a path to the autoexp.dat file somewhere. The file is available under the Visual Studio installation directory.

link|improve this question

66% accept rate
feedback

2 Answers

I had a similar problem in 2008, with the debugger showing only the e.g. std::vector _Myfirst, _Mylast members rather than the vector size and children.

Open Tools/Options/Debugging/General and clear the flag "Show raw structure of objects in variable windows"

(Presumably the suggest

link|improve this answer
feedback

This got me the closest. http://garrys-brain.blogspot.com/2007/12/stlport-visual-studio-2005-visualisers.html

It would appear you need to make adjustments for types while using ports. Also you might have to make changes to the display to display exactly what you want.

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.