Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
3answers
2k views

Immediate Window for Eclipse

Does Eclipse have an analog to Visual Studio's "Immediate Window", a window where I can evaluate statements while in the debugger?
15
votes
2answers
2k views

Visual Studio Immediate window: how to see more than the first 100 items

I am trying to see the properties of an object with over 300 properties in the Immediate Window of Visual Studio 2005. Only the first 100 items are displayed, followed by this caption: < More... ...
11
votes
3answers
3k views

How do you use the immediate window in Visual Studio?

The immediate window is an immensely useful tool for debugging applications. You can use it to execute code statements that are valid in the context of your break point and inspect values. I also use ...
11
votes
3answers
4k views

VisualStudio immediate window command for Clear All

Anyone know of a command to clear the immediate window in visual studio? I hate having to grab the mouse for a right click menu there - would rather just type "cls" or something.
9
votes
1answer
872 views

Visual Studio Immediate Window - Lambda Expressions Aren't Allowed - Is there a Work-around or Alternative?

I'm debugging some tricky generic List-based code in VS 2010 - lots of heirarchy-processing etc.. Of course lambda expressions and anonymous methods aren't permitted within the immediates window and I ...
7
votes
2answers
146 views

Weird Issue with DateTime calculation

I've probably been working too hard, but can someone explain to me the following, taken from the Immediate window? (int)DateTime.Now.Date.DayOfWeek = 4 and (int)DayOfWeek.Sunday = 0 and ...
6
votes
2answers
1k views

Why can't I index a std::vector in the immediate window?

So, I have a vector std::vector<std::string> lines. I fill this vector up, and can access it like std::string temp = lines[0]; However, in the immediate window, both lines[0] - ...
5
votes
1answer
546 views

Immediate Window, “The expression cannot be evaluated…”

When I try to evaluate expression in Immediate Window at design time I get error "The expression cannot be evaluated while in design mode." if I compile ASP.NET project and try to run in debug mode ...
5
votes
1answer
778 views

Immediate Window automatic cleaning in Visual Studio

I have a question about debugging in Visual Studio. Is it possible to clear the Immediate Window in Visual Studio automatically before each startup of a debugged application? The >cls command and ...
4
votes
2answers
746 views

immediate window

Is there anyplace in the eclipse ide that I can enter immediate code while stoped at a breakpoint? thanks
3
votes
2answers
117 views

Immediate window behavior differences in C# and VB.NET

I have noticed that the immediate window in VS 2010 behaves differently when debugging a C# project and a VB.NET project, although I haven't been able to find any specific documentation of this ...
3
votes
2answers
1k views

Visual Studio 2010: suddently Locals, Immediate Window and Watches don't work

I have this problem that a week ago, when debugging, suddently the "Locals" window is blank, the "Immediate Window" and Watches don't work and all return "Unable to evaluate the expression." Also the ...
3
votes
2answers
575 views

Newlines in the Immediate Window

Using Visual Studio 2010 Professional, I have a ToString() method that looks like this: public override string ToString() { return "something" + "\n" + "something"; } Because there are several ...
2
votes
1answer
352 views

Displaying 2D array in visual studio debugger

I am working with Visual Studio 2005 and have a 2D array (say my2Dvar) that I would like to see the values of during run time. I am looking to export these values into Matlab. I tried displaying the ...
2
votes
2answers
231 views

Visualising lists in debug (or printing to immediate windows)

When I try to see the internal list of Dictionary item I hate to expand every single node one by one. I'm looking for an easier way to do this. For example: I've got a Dictionary object ...
2
votes
3answers
720 views

Debugging in Monodevelop on OSX not quite working

Hey guys, just installed on my Mac Snow Leopard OSX: Mono 2.6 and Monodevelop 2.2 I've created a simple C# Console App: public static void Main (string[] args) { Console.WriteLine ...
1
vote
1answer
65 views

Getting “ Expected ';' ” in the visual studio immediate window

I type something like ?311610.ToString(), and it gives me the error saying Expected ';' What am I doing wrong? Update: Sorry, I forgot to mention I was debugging javascript.
1
vote
1answer
76 views

Is it possible to install custom unhandled exception handler while debugging in VS 2008/2010?

I'm working on an utility that processes very large data sets. Since there are lots of code it uses to operate, some totally unexpected errors appear while running. So I run it inside Visual Studio ...
1
vote
0answers
269 views

Visual Studio Immediate Window - Problems with Web Applications

Does anyone have any experience in using the Visual Studio Immediate Window with Web Applications? I have VS2010 Ultimate, and the immediate window works just as expected (i can evaluate code while in ...
1
vote
0answers
39 views

Escaping period in Visual Studio Find Immediate Window

I learned about entering into the immeidate window >of filename trick in visual studio, but when I enter a period, which is reserved for separating menu items, it populates some junk that is ...
1
vote
1answer
190 views

Automate VisualStudio immediate Window

I'm trying to automate the process of opening crash dumps for managed applications and retrieving the stack trace. Windgb works sometimes, but getting it to load the correct version of sos.dll is a ...
1
vote
3answers
382 views

How does the immediate window of visual studio print all members of an object?

How can I using the output window write all the members of an object? Trace.WriteLine uses method ToString and doesn't output all the members. Is there API to do it without writing own code?
1
vote
4answers
467 views

VS/vb.net: How to get the instance used by a With statement in the immediate window

VB.Net has a the very handy "with" statement, but it also lets you use it on an unnamed variable, like this: With New FancyClass() .Level = "SuperSpiffy" .Style = Slimming .Execute() End ...
0
votes
1answer
29 views

Can I run XPATH queries in Immediate window?

Is it possible to run XPATH queries on an active window which is an XML from the Immediate window? (In my case, I would like to do it to see if I am selecting the correct nodes; but anyway, is it ...
0
votes
0answers
53 views

multithread debugging from immediate window

When I break into the debugger and call a function from the immediate window of VS2010 on the main thread, the function gets executed normally on the same thread. However, it appears other threads are ...
0
votes
0answers
28 views

How do I examine the color properties of a control in the Visual Studio Immediate Window?

I set a breakpoint in my Visual Studio 2008 Smart Device project so that I could examine the state of some control properties. Specifically, I want to know what the background and foreground colors ...
0
votes
1answer
606 views

Memory Dump in Visual Studio

I'm trying to follow this tutorial but with the immediate window in vs2010 rather than WinDBG: http://blogs.msdn.com/b/dougste/archive/2005/11/25/497016.aspx but I'm getting stumped by the following: ...
0
votes
1answer
222 views

Does the immediate window provide a nice way to display a primitive array?

I dynamically assigned an array as follows: unsigned char **nonces=new unsigned char*[n_cases] Is there a way to nicely print it out in the immediate window? Alternatively, it would be nice to make ...
0
votes
2answers
90 views

Peculiar behavior of immediate window in VS 2008

Today something peculiar happened while debugging in VS 2008. I will give the small code snippet List<IPageHandler> myPageList = TaskSOM.PageList; if( myPageList != null && ...
0
votes
2answers
687 views

advanced Visual Studio kung-fu test — Calling functions from the Immediate Window during debugging

I see some related questions have been asked, but they're either too advanced for me to grasp or lacking a step-by-step guide from start to finish (most of them end up being insider talk of their own ...
0
votes
2answers
629 views

Display exception information and Debug.Print() messages in Immediate Window

A friend of mine claims that calls to Debug.Print() as well as first-chance exception notifications appear in the Immediate Window for him. I found this surprising; for me they only appear in the ...