Questions tagged [debuggervisualizer]

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.

Visualizers are components of the IDE debugger user interface. A visualizer creates a dialog box or another interface to display a variable or object in a manner that is appropriate to its data type. For example, an HTML visualizer interprets an HTML string and displays the result as it would appear in a browser window; a bitmap visualizer interprets a bitmap structure and displays the graphic it represents.

168 questions
3
votes
1 answer

Visual Studio .natvis file - matrices

I'm trying to display a matrix class in the Visual Studio 2013 debugger. The relevant part of the class is this: class mat { private: size_t rowdim, coldim; double* _mem; }; I'm trying to visualise this as a multi-dimensional array but I…
3
votes
1 answer

How can I increase the size of the string that IDE debugger visualizer can display?

How can I increase the size of the string that IDE debugger visualizer can display? At the moment the limit is 2K (I think). I am thinking in finding the source code for the current string visualizer and modifying it to show more lines and…
Gabriel
  • 20,797
  • 27
  • 159
  • 293
3
votes
1 answer

Custom Visualizer for DbCommand

Hi im trying to create a custom Visualizer for the DbCommand object that should be used in Visual studio 2013. i have the following code using VisualizerTest; using Microsoft.VisualStudio.DebuggerVisualizers; using System; using…
Peter
  • 37,042
  • 39
  • 142
  • 198
3
votes
0 answers

Inspect the Eigen matrix value in visual studio 2012

I'm currently using Visual Studio 2012. I knew that in order to visualize the matrix entries from the Eigen3 library I have to do something as described here. However when I tried the both methods described there and it is still not possible to show…
3
votes
1 answer

Debugging binary trees

I've written a quite primitive binary tree and it works just fine. The problem is, debugging it is a pain, actually seeing what each node contains and all their children and grandchildren is very tedious. Are there any visualizers so I can just get…
Overly Excessive
  • 2,095
  • 16
  • 31
3
votes
0 answers

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 arrays for security reasons. I seem to remember…
Andrew
  • 2,598
  • 16
  • 27
3
votes
1 answer

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 (Mole.Visualizer.dll) into the following folder and restarted…
Jan Bannister
  • 4,859
  • 8
  • 38
  • 45
3
votes
1 answer

Does IntelliJ support something like VS Debugger Visualizers?

I would like to see the contents of a certain Enumeration instance. In the absence of a List/Array like type accepting it in its constructor another viable option would be a Debugger Visualizer, something that exists in VS. How can I do it in…
mark
  • 59,016
  • 79
  • 296
  • 580
3
votes
2 answers

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?
Alexander Shishenko
  • 940
  • 1
  • 11
  • 28
2
votes
0 answers

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 an example, followed by what I can and can't see…
adam
  • 21
  • 2
2
votes
2 answers

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 visualizers for RTSG data types. RTSG::Matrix44 { …
2
votes
3 answers

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 do.) How can I transfer the image data from the…
2
votes
0 answers

IEnumerable Visualizer option is missing

I'm using the latest version of VS 2022 (Version 17.2.6). When I create a new (console) application I am able to use the IEnumerable Visualizer. Visualizer at work But when I paste this same, simple code into my existing code the option to view the…
henk
  • 21
  • 2
2
votes
0 answers

Cannot load the custom visualizer in Visual Studio 2019

I've created a custom visualizer in Visual Studio 2019 but I'm having trouble activating it on a specific machine (it works on two other machines, so it's not related to the code). I've placed the visualizer (called DocumentVisualizer.dll) in the…
Andrea Nagar
  • 1,233
  • 2
  • 13
  • 23
2
votes
2 answers

Visual Studio custom data visualizer throws BadImageFormatException

In our c# code base (hence managed code), we have a class that we make extensive use of throughout the code. Given its ubiquity, I decided to write a custom debugger visualizer so that we could easily examine such objects when debugging. But, I hit…
David I. McIntosh
  • 2,038
  • 4
  • 23
  • 45