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
1
vote
0 answers

How to do a very simple debug value replacer for Delphi?

Why do we need so much code just to tell the debugger to call .ToString on some objects? I looked at the included examples under C:\Program Files (x86)\Embarcadero\Studio\19.0\source\Visualizers and adapted them for one of my objects - it works…
maf-soft
  • 2,335
  • 3
  • 26
  • 49
1
vote
1 answer

DebuggerVisualizer not showing up when debugging but works on test application

I have made a DebuggerVisualizer to show a simple Image of an abstract Puzzle class - the issue I'm having is that in my test application that simply creates a puzzle and calls TestShowVisualizer() the image is displayed correctly on screen. However…
FlyHigh32
  • 21
  • 3
1
vote
1 answer

Display debuggers not showing up in Visual Studio 2017

I've been working on a display debugger for Visual Studio 2017, and everything builds fine, but it doesn't show up in the list of display debuggers for the type. I've tried debugging in a temp instance of VS and installing the VSIX manually. I've…
Arian Kulp
  • 831
  • 8
  • 31
1
vote
3 answers

Better way to represent the contents in a Debugging Context List?

In debug mode at least, is there a less fussy way to examine the contents of a populated List? I want to say it's a visualizer...? My Google-fu though is failing me this evening. Thanks. I ended up downloading ML Collection Visualizer 2015-2017…
Steve
  • 549
  • 6
  • 21
1
vote
2 answers

Where is EntitySet's "Results View"?

When looking at a linked EntitySet 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 click the little refresh icon and see the content: Why…
Allon Guralnek
  • 15,813
  • 6
  • 60
  • 93
1
vote
1 answer

Visual Studio Debug Visualizer not working for Datatable (Unhandled exception has occurred in a component in your application)

Unhandled exception has occurred in a component in your application. When I click the the magnifier button in debug model, the debug visualizer doesn't work only for datatable, while working for other types like string. I have searched old…
1
vote
1 answer

C# Visual Studio DataTable Debugger Visualizer with Row Numbers

The inbuilt Visual Studio DataTable Debugger Visualizer does not display the row numbers, and does not support copying to clipboard and pasting to Excel. Is there any other Visualizer available that supports these features? I need to examine the…
AllSolutions
  • 1,176
  • 5
  • 19
  • 40
1
vote
1 answer

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 project still active or is it now obsolete because…
Tom Robinson
  • 8,348
  • 9
  • 58
  • 102
1
vote
0 answers

Formatting a string as the VisualStudio debugger does

When I hover over a string that has binary data in it I see something like: 'abcdefg\0\0hijk\4lmnop' When I view it in the TextVisualizer the binary data comes up as garbled text (particularly the '\0' character shows up as a small box) where the…
Kevin Burton
  • 133
  • 1
  • 1
  • 8
1
vote
3 answers

How to view QString values in debugger with Qt 5.5.1

Does anyone know how to view QString values in the debugger for Qt 5.5.1 (QtCreator 5.3.1)? I have tried various things found online, from enabling/disabling GDB pretty printer, display QString format etc. Nothing seems to work. (Compiler - MSVC…
Dynite
  • 2,313
  • 5
  • 30
  • 38
1
vote
1 answer

How to create Visual Studio DebuggerVisualizer for C++

.NET allows you to create DebuggerVisualizers for data types in Visual Studio, I need to add the following attribute to types I want to visualize: [System.Diagnostics.DebuggerVisualizer("VisualizerTypeName", "ObjectSourceTypeName")] Then it will…
Bryce Wagner
  • 1,151
  • 7
  • 18
1
vote
1 answer

Is there anything simple for debugger visualizers in C# that's analogous to editing autoexp.dat for C++?

I have a class that has a few simple members I'm looking to expose to the debugger in Visual Studio 2010. I want to quickly glance over a list of these types and avoid all the drilling and expanding of the variable's value tree. I'm hoping there's…
jxramos
  • 7,356
  • 6
  • 57
  • 105
1
vote
1 answer

Custom Visualizer for EASTL VS2012 / 2013

I got EASTL from here - https://github.com/paulhodge/EASTL For debugging, I'm writing custom visualizer VS2012/2013. "eastl::vector" works fine but "eastl::map" doesn't. Here is my code {{size =…
edgafigaro
  • 11
  • 1
1
vote
1 answer

Apply a debugger visualizer without assembly dependencies

I am trying to create a debug visualizer which applies to a variety of objects without make the visualizer assembly a dependency. I want to apply this visualizer to a variety of classes, including private nested, internal, and with lots of complex…
1
vote
1 answer

"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 application will be a complicated one with lots of…
David
  • 4,786
  • 11
  • 52
  • 80