views:

35

answers:

2

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.

A: 

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.

Pradyot
A: 

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

PaulS