Visualizers are components of the IDE debugger user interface that displays a variable or object in a manner that is appropriate to its data type.
4
votes
3answers
153 views
Why Doesn't the Visual Studio 2010 Debugger See static const Class Members?
This question is closely related to a subsequently asked question here.
The method of defining in-class constants is described here by Stroustrup.
When I follow Stroustrup's method I see the ...
1
vote
2answers
53 views
How to create a custom Debugger Visualizer in VS2010 to visualize a class which is non-Serializable?
I want to visualize an object with a custom Debugger Visualizer in VS2010. But the object of that class does not have Serializable property.
Since the Source code is written and maintained for long, ...
0
votes
0answers
43 views
TypeInitializationException loading Debugger Visualizer following overnight update
All yesterday I was debugging an app under VS2012 using a custom debug visualizer. Last night my PC was updated with a Platform Update (for Windows 7 x64-Edition KB2670838) and restarted ...
0
votes
0answers
16 views
Reading debugee memory without understanding structure of data being read?
I am writing a debugger visualizer for a VC++ type.
I am using the ReadDebugeeMemory API to copy the object. This just does a shallow copy. From my debugger I would like to be able to make calls on ...
1
vote
0answers
55 views
Where can I find the natvis schema definition (for creating VC++ debugger visualizers)?
Various online sources tell me I can find it @ %VSINSTALLDIR%\Xml\Schemas\natvis.xsd.
But I have not been able to find it in the said path. I have checked multiple VS2010 and VS2012 installations.
Can ...
0
votes
0answers
42 views
Display strings with embedded nulls in VS2010 debugger visualizer
In Visual Studio 2010, I am trying to have strings (char* and wchar_t*) display with embedded nulls in the various native C++ Debugger Visualizer components, such as the data tip area (Watch window, ...
4
votes
1answer
213 views
How do I use my own debugger visualiser to edit variables runtime?
I'm writing my own debugger visualiser. All works great to show up to visualiser with the data.
Now I add the code for more clearness:
public class MyVisualiserObjectSource : VisualizerObjectSource
...
0
votes
1answer
128 views
StackOverflowException in Visual Studio DebuggerVisualizer
I'm developing Visual Studio debugger visualizer. It worked fine but then (unexpectedly) it become broken. I can not figure out why it happend because I didn't changed anything important.
So now I ...
1
vote
2answers
451 views
Natvis Visual Studio 2012 Boost Vector and Matrix
I have downloaded and installed cppvisualizers to allow better handling of boost data structure in Visual Studio 2012.
https://cppvisualizers.codeplex.com/
It does not have support for ...
0
votes
4answers
176 views
Anyone know a good, free debugger for C++?
I've been having a really hard time with those kinds of bugs that just don't make any sense, and an even bigger one with trying to figure out how Code::Blocks' debugger works. If there's any way to ...
1
vote
1answer
58 views
Does IntelliJ support something like VS Debugger Visualizers?
I would like to see the contents of a certain Enumeration<T> instance. In the absence of a List/Array like type accepting it in its constructor another viable option would be a Debugger ...
3
votes
1answer
292 views
Visual Studio Visualizer for IEnumerable<string>
TL;DR
Does anyone know how to write a Debug Visualizer for Visual Studio 2012, in C#, so I can visualize IEnumerable<string>, string[] or similar objects?
More Info
Visual Studio Debug ...
0
votes
1answer
321 views
Circular Double Linked list visualization using natvis
I would like to write a natvis visualizer for a double linked list. The list does not have a count node stored, and the easy way does not work very well, as the expansion never stops (next is never ...
2
votes
2answers
155 views
Get variables from Visual Studio debugger
I received a task to visualize an array from program, that is being debugged in VS. Is there any way to connect to Visual Studio debugging session from external program and get data from it?
0
votes
1answer
139 views
Inspect value of std::stringstream in Visual Studio 2005
Is there a way to inspect the value ( .str() ) of std::ostringstream when debugging in VS2005? Like modifying the autoexp.dat file to make stringstream value visualizable?
0
votes
0answers
117 views
Arithmetic in Visual Studio Visualizer (pow, etc.)
i want to visualize my fix point class in the VS Debugger.
A Number is represented like this:
x = _value / (pow(2.0, _exp)
where _value and _exp are members of my class.
I managed to write a ...
4
votes
2answers
242 views
How do I write a very simple Visual Studio debugger visualizer?
I'm trying to write an 'autoexp.dat'-based visualizer for a string type. I've scaled-back my ambitions to attempting to write a visualizer for a really simple test type that contains a null-terminated ...
2
votes
0answers
175 views
Xcode 4.3 debugger: viewing template variables in linked lists used to work in Xcode 3
Since moving to Xcode 3 to 4.3, in the debugger I've been unable to view member variables in nested template classes such as linked lists. Does anyone have any thoughts on how to get a look?
Here's ...
4
votes
0answers
97 views
Multiline watch window display for XML data?
I'd like to be able to speed up my debugging by being able to view nicely-formatted XML in the VS2010 watch window, as opposed to having everything on a single line. If I open the XML Visualizer, I ...
2
votes
2answers
505 views
Even simplest rules for [Visualization] in autoexp.dat won't work
I am trying to visualize my matrix class in a more readable way than array of arrays using text visualizer. However even simplest rules won't work. Here is my rule for autoexp.dat:
; Custom ...
12
votes
1answer
266 views
How can I increase the size of the string that an external debugger visualizer can display?
I am once again writing an external debugger visualizer, and am running into a wall. There appears to be a limit to the size of the string that the debugger visualizer can return.
The TStrings ...
1
vote
1answer
157 views
Visual studio autoexp.dat alternative?
Custom debug visualization in visual studio:
Is there any way to do it per project instead of editing the "global" autoexp.dat?
Would be nice if it tagged along when changing workstation..
0
votes
1answer
68 views
Gui for debugging comparing large collections of Java objects in parallel files.
I have some large, binary files with serialized data in them. I would like to create a "generic" ObjectGUI that allows me , for example to .
1) Select several files
2) Select a "reader" or ...
0
votes
1answer
145 views
Debug Visualizer for xCode
According to this book XCode by James Bucanek the xCode comes with a Debug Visualizer. But the author never mentions how to open it, a surprise. Does anybody know how to open Debug Visualizer?
1
vote
1answer
354 views
Debugger visualizer of GDI objects for unmanaged C++
Technically, is there a way to show images (bitmaps, icons, cursors) directly inside the watch window? As far as I know there is no way to do that via autoexp.dat. (If not, a tool window will also ...
4
votes
1answer
199 views
How do I obtain a reference to the object or its data from my external viewer debugger visualizer?
I am trying to write a debugger visualizer for a TJSONObject or a TJSONValue. I have most of the visualizer working nicely. The problem I am having is getting a reference to the TJSONObject, or at ...
0
votes
1answer
64 views
Visual Studio debuger visualizers for Mozilla objects
Are there any Visual Studio debugger visualizers for Mozilla objects (e.g. nsString)?
I'm looking for something like the boost visualizers.
8
votes
2answers
1k views
Visual C++ debugger visualizer?
How does Visual Studio show the elements of a vector, or the characters of a string, in C++? Is there a way for me to make it show my own classes in a custom way?
5
votes
3answers
475 views
Why do some properties go out of scope in the watch list, while others do not?
First of all, sorry for the lengthy code example, but I believe it's needed to illustrate my problem.
As a debugging help I often introduce a "DebugString"-method on my objects, which returns a ...
4
votes
1answer
378 views
Xcode 4.1 custom DataFormatter bundle
I'm trying to make a custom Data Formatter bundle to allow me to print things like STL containers more prettily, etc.
I've followed the instructions online as well as I can, however I can't seem to ...
15
votes
3answers
2k views
Visual Studio: JSON visualizer when debugging
When debugging in Visual Studio 2010 and hovering over a variable name, I'm given the option to use 3 different built-in visualizers: Text, XML, & HTML.
Here is an example of what I'm ...
1
vote
2answers
526 views
Debugger visualizer for any ICollection and ICollection<T> types
I created form with grid to visualize any collection (ICollection, ICollection<T>) object.
After that I created debugger visualizer class (inherits from ...
5
votes
1answer
440 views
How to visualize the content of Graphics variable in Visual Studio 2010 during debug?
I am working on a rendering engine for my application and need to visualize the Graphics object during the debug session.
I looked at Image Visualizers for VS2010, like this or this, but they ...
5
votes
1answer
225 views
ObservableCollection visualizer - does such a thing exist?
I am finding myself working with ObservableCollection quite a bit. I've looked around, but I can't seem to find an ObservableCollection Debug Visualizer.
Does such a thing exist?
2
votes
1answer
334 views
Is there a Visual Studio debug visualizer for a stream or byte array containing protobuf payload?
Does anybody knows of a VS debug visualizer for the protobuf content?
6
votes
1answer
673 views
Visual Studio C++: Debug Visualizer use member method / function call in preview?
Using Visual Studio 2010 with native C++. When editing autoexp.dat, is it possible to use the results of a method call in a debug visualizer preview?
For example, if my class is Person how can I do ...
2
votes
1answer
494 views
Using extension methods in [DebuggerDisplay] Attribute
The Attribute [DebuggerDisplay] (Using DebuggerDisplayAttribute) allows to define the display in the Debugger of VS 2010/2008. By modifying AutoExp.cs/.dll, I can even override the display of system ...
6
votes
3answers
154 views
Debugging visually using >>, >, >|, ||, |<, <, <<
Debugging performance problems using a standard debugger is almost hopeless since the level of detail is too high. Other ways are using a profiler, but they seldom give me good information, especially ...
0
votes
1answer
296 views
DebuggerVisualizer debugging in Visual Studio 2010
I am working on a collection debugger visualizer in VS2010 using C# and I cannot find a way to debug the visualizer itself (not the client app). Can anyone give me some help regarding this? Basically ...
1
vote
2answers
275 views
VS Debug Visualizer for WP7
Does Visual Studio 2010 support Debug Visualizers for Windows Phone (Silverlight) development?
My visualizer works fine in Windows apps but simply won't show up when debugging WP7 apps (no error ...
2
votes
3answers
396 views
visualize c++ data structure
I am looking for a program to help me debug a tree in c++. My tree has thousands of nodes and I want to view the tree as it forms and view problem nodes and branches. Operating system doesn't matter. ...
3
votes
4answers
239 views
What DebuggerVisualizers are already existing within VisualStudio or .Net Framework?
A quite dumb question but i simply can't find the answer.
I have a self-written class that implements the IList<T> interface. Now i like to see the containing elements within Debugging like i ...
3
votes
2answers
689 views
Debugger Visualizer [Visual Studio 2010] - System.Linq.Expressions.Expression - not showing magnifying glass
I have been trying to build a debugger visualizer for a linq Expression.
I know one exists already, but I would like to create my own and add additional functionality.
I made this quick prototype.
...
8
votes
4answers
814 views
Is there an easy way to make `boost::ptr_vector` more debugger friendly in Visual Studio?
I'm considering using boost::ptr_container as a result of the responses from this question. My biggest problem with the library is that I cannot view the contents of the collection in the debugger, ...
1
vote
2answers
662 views
Where is EntitySet<T>'s “Results View”?
When looking at a linked EntitySet<T> of a LINQ to SQL mapped entity, I see the following:
I'd like to see the following (achieved by using the .AsQueryable() extension method) so that I can ...
6
votes
4answers
531 views
Debugger Visualizer to generate Object Initializer code
We have a bug to fix, and like any good TDD practitioner, I want to write a failing test to represent the bug first. The bug is in a method that takes a rather complex type as input. The bug will ...
0
votes
1answer
206 views
Is Mole for Visual Studio by Karl Shifflett still active?
I've been reading about Mole and am interested in trying it but it doesn't look like it's being kept up to date as there's no mention in the documentation of Windows 7 or Visual Studio 2010. Is the ...
4
votes
2answers
1k views
Visual Studio is not loading my debugger visualizer
I wrote my own Debugger Visualizer.
It, and the attributes, are in their own assembly. There is no references or attributes in the assembly containing the class to be debugged - I want to make a ...
4
votes
4answers
1k views
2
votes
1answer
371 views
Using Debugger Visualizers in Visual Studio without having to copy its dll assembly to VS's folder
I know it is possible to create Debugger Visualizers since Visual Studio 2005.
Now, what I'd like to know is if it is possible to use our Debugger Visualizers without having to put them in Visual ...


