Tagged Questions

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.

learn more… | top users | synonyms

6
votes
1answer
362 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 ...
6
votes
1answer
356 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 ...
6
votes
3answers
141 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 ...
6
votes
1answer
572 views

Debugger Visualizer and “Type is not marked as serializable”

I am trying to create a debugger visualizer that would show control hierarchy for any Control. It's done but I'm getting the exception "Type is not marked as serializable". How do I overcome that? ...
6
votes
2answers
176 views
5
votes
3answers
310 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 ...
5
votes
1answer
128 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?
5
votes
3answers
375 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, ...
4
votes
1answer
71 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 ...
4
votes
2answers
389 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
963 views

Mole for VS 2010?

Does anyone know about Karl Shifflett's Mole for VS 2010?
3
votes
2answers
206 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?
3
votes
1answer
90 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 ...
3
votes
4answers
133 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
4answers
220 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 ...
3
votes
1answer
2k views

How to keep Visual Studio debugger visualizers from timing out?

I've successfully made several Visual Studio debugger visualizers, and they're working very well, except that on some objects I get a time out error when I try to deserialize the object with ...
2
votes
0answers
173 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 ...
2
votes
1answer
106 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?
2
votes
1answer
232 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 ...
2
votes
3answers
214 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. ...
2
votes
2answers
390 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. ...
2
votes
1answer
162 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 ...
2
votes
0answers
91 views

How-to implement a custom debugger visualiser in VS2008 on an array using a WeakReference?

I would like to implement a custom debugger visualiser in vs2008 for a typical array as the standard one does not display the data as I would like it. However Visual Studio prevents doing this for ...
2
votes
1answer
175 views

get variable name in debugger visualizer

Is there a way to get the underlying variable name of a target object in a Visual Studio debugger visualizer? The built-in string visualizer does it: string myStr = "abc\ndef"; Debugger.Break(); ...
1
vote
0answers
65 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 ...
1
vote
2answers
249 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 ...
1
vote
1answer
78 views

Is it possible to disable both debugger visualization and ToString() invocation in all the debugger views of VS2008?

My project depends on a 3rd party assembly which defines debugger visualizers for some of its types. Usually this is totally fine, but some types have lazy logic, which becomes eager once the data is ...
1
vote
2answers
71 views

Are there any MVC Visualizers out there?

Are there any debug visualizers for Visual Studio for MVC? Would be great to be able to visualize things like ModelState, ViewState, Routes etc. If you're interested in this just favorite the ...
1
vote
1answer
138 views

How do I install a Debugger Visualizer?

I'm trying to use Mole for Visual Studio but it's not loading. I've had this issue before with other visualizers so I'm probably missing something obvious. I just copied the DLL ...
1
vote
1answer
719 views

Debugger Visualizer not working? Have i incorrectly registered it?

I have created a debugger visualizer in VS2008. There are two classes i've made, in the same .dll :- BinaryDataDebuggerVisualizer ImageDebuggerVisualizer The image one works fine (eg. the ...
0
votes
0answers
10 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
17 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
46 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?
0
votes
0answers
13 views

What UI technology should be used for VS2010 debugger visualizers?

When developing debugger visualizers for Visual Studio 2010, the API suggests that to bring up UI (i.e. custom dialogs to render the data) one should use Windows Forms. As a specific example, the ...
0
votes
1answer
32 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.
0
votes
0answers
31 views

managed C++ Datatable Visualizer

Is there a datatable visualizer for managed C++ projects in VS2010 while debugging? I remember it was not there in VS2008. Is there something I should do to enable it. Thanks for the help.
0
votes
0answers
48 views

Visual Studio debug visualizers order (default visualizer)

I recently installed XML Visualizer v.2 and it's great, but threre is a one very annoying thing, since I installed it, XML visualizer become default visualizer for strings. Here is a picutre : ...
0
votes
1answer
150 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 ...
0
votes
1answer
138 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 ...
0
votes
2answers
191 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 ...
0
votes
3answers
144 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 ...
0
votes
1answer
251 views

Debugger Visualizer, ElementHost, and Edit and Continue problems

I recently wrote a custom Debugger Visualizer for Visual Studio 2008 for one of the custom types in my application. The UI for the visualizer is written in WPF and is hosted in an element host and ...
0
votes
1answer
74 views

“Replay” the steps needed to recreate an error

I am going to create a typical business application that will be used by a few hundred consultants. Normally, the consultants would be presented with an error message with a standard text. As the ...
0
votes
2answers
382 views

How to create a Visual-Studio string visualizer?

I was trying to create a visualizer for IDictionary or ICollection Then like the simple visualizer (without dialog; I mean the ususal string visualizer that appears when hovering the variable, see ...
0
votes
1answer
77 views

Does anyone have a Control Visualizer for VS 2005

I am looking for the source and download of the Control Visualizer which is developed by Brett Johnson, but i am unable to find any links related for downloading the Visualizer and also unable to find ...
0
votes
3answers
503 views

Debug visualizer - the visualizer dll can't be loaded

I am learning to write a debug visualizer in vs2008 C#. But keep getting the error saying that MyDebugVisualizer dll can't be loaded when I am in debug mode and click the magnifying glass icon. My ...