The immediate-window tag has no wiki summary.
3
votes
1answer
81 views
Delphi debug.print function? [duplicate]
Does Delphi have a function similar to debug.print in VB, and if it does, how does one access the immediate window?
Thanks.
2
votes
1answer
81 views
VS Immediate Window for C++ Declarations
Recently I discovered that it's possible to declare variables in the Visual Studio immediate window while debugging. This feature is really useful because if I want to experiment with the code in ...
0
votes
2answers
116 views
Using Visual Studio Immediate Window like VBA immediate window
In the VBA immediate window, I can simply type the following at any time:
?Len("Four")
Press enter and get the result:
4
If I try to do that in Visual Studio Express (VB.NET), I get the ...
2
votes
1answer
290 views
How to print two dimensional array in Immediate window in VBA?
How to print two dimensional array in Immediate window in VBA ? Does it exist any generic method for doing this ? Some method for ploting one row of array per line in Immediate window could solve this ...
1
vote
1answer
312 views
Dynamic in the immediate window causes 'Microsoft.CSharp.RuntimeBinder.Binder' is not defined or imported error
If I use dynamic in the immediate window of Visual Studio I get an error
((dynamic)"abc").Count() Predefined type
'Microsoft.CSharp.RuntimeBinder.Binder' is not defined or imported
How can I fix ...
5
votes
4answers
111 views
How to determine type of a variable? (not the type of the object)
I'm in the immediate window in Visual Studio. There's a variable p. How can I deduce the type of the variable p?
I tried p.GetType() but that returns the type of object p. In my case, this is a very ...
3
votes
1answer
124 views
String Compare Error
if I type this into my Immediate Window
String.Compare("AA", "SA");
I get a result of 1
surely this is wrong? AA is less than SA so shouldn't it be -1?
I am running .NET 4
3
votes
1answer
117 views
How can I tell if my code has been called from the Immediate Window?
Is there any way that my code can tell the difference between "I am executing in normal process context" and "I have been executed from the Immediate Window of the Debugger"?
I have a library object ...
0
votes
1answer
78 views
Wrong computation inside a loop
All,
I haven't encountered something as frustrating as this is before. Your help with regards to this EXTREMELY NAIVE problem would be appreciated. It seems that the problem is very simple, but I dove ...
0
votes
1answer
143 views
Modify the ASP.NET Session during debug?
Is it possible to modify values, keys or even clear the Session during debugging of an ASP.NET page?
I tried the following in the Immediate Window (in the presented order), but nothing changed the ...
3
votes
1answer
406 views
Immediate Window in Design Mode
According to Microsoft: "The Immediate window is used at design time to debug and evaluate expressions, execute statements, print variable values, and so forth."
Notice it says "at design time". I ...
0
votes
2answers
197 views
What is “.load” in .load sos?
In Visual Studio I use .load sos in the Immediate Window to load sos.dll. What is this '.load'? Is there some description for it?
In the Immediate Window I Can:
Evaluate an expression (? varA), ...
2
votes
1answer
137 views
Catching a vbscript error from c# (the vbscriot executed from c#)
i'm trying to execute vbscript from c#, the vbscript runs always succesfully despite of the fact that i don't have permissions to run this script.
the code:
//nswp is the User's password
...
12
votes
2answers
393 views
How do I reference a namespace to be used in immediate or quickwatch?
Sometimes when I quickwatch an expression at runtime, the Quick Watch window shows an error saying the name does not exists in the current context. The same goes for the immediate window. The ...
1
vote
3answers
679 views
The Immediate Window
We use fluentmigrator and it wants a long for the migration number.
Normally I can just open the immedetiate window and type
System.DateTime.Now.ToString("yyyMMddhhmmss");
But sometimes it will ...
7
votes
2answers
678 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 ...
0
votes
1answer
97 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 ...
1
vote
1answer
213 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.
7
votes
2answers
202 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
...
4
votes
1answer
124 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 ...
12
votes
1answer
3k 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 ...
0
votes
0answers
34 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 ...
1
vote
1answer
118 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 ...
0
votes
1answer
2k 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:
...
1
vote
0answers
409 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 ...
3
votes
1answer
691 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 ...
21
votes
2answers
4k 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 ...
4
votes
2answers
3k 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 ...
0
votes
1answer
420 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
131 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 && ...
1
vote
1answer
60 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
2answers
2k 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 ...
10
votes
2answers
1k 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
320 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
2answers
1k 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 ...
7
votes
1answer
1k 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 ...
8
votes
2answers
2k 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] - ...
7
votes
2answers
2k views
immediate window
Is there anyplace in the eclipse ide that I can enter immediate code while stoped at a breakpoint?
thanks
4
votes
2answers
853 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
1k 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
3answers
692 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?
19
votes
2answers
5k 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... ...
8
votes
6answers
876 views
Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827?
When I type this into the Visual Studio 2008 immediate window:
? .9 - .8999999999999995
It gives me this as the answer:
0.00000000000000055511151231257827
The documentation says that a double has ...
44
votes
3answers
6k 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?
28
votes
4answers
13k 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 ...
24
votes
4answers
7k views
Visual Studio immediate window command for Clear All
Is there 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.
1
vote
4answers
621 views
VB.NET - How to get the instance used by a With statement in the immediate window
VB.NET has a 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 With
...


