Tagged Questions
0
votes
0answers
27 views
Remote debugging hosted apps
I have a hosted (IE) win forms application that only experiences strange behavior on a specific client machine. I'm able to attach to the IE process using visual studio however the symbols for the ...
0
votes
0answers
25 views
Visual Studio 2012 Debugging - Strange scripts (fs.js and l.js)
I was trying to debug my site on Visual Studio 2012 and, all of a sudden, I noticed that the website was behaving strangely slower.
I checked the network tab on my browser (IE10) and I saw that the ...
0
votes
2answers
94 views
Need to debug my Web API service that's requested from a client machine - need help, how do I do this?
I built a Web API service that's hosted locally on my machine in IIS. I have an iOS app that I'm running via XCode that makes the call to the web service. The connectivity is there, and works. The ...
1
vote
1answer
29 views
Debug using attach to process of windows installer
I have my .msi windows installer project with multiple services to install. I have a NullReferenceException during installation and I would like to debug installation process to figure out what is ...
0
votes
1answer
27 views
Debugging an installed .NET application
Dealing with an error which only seems to occur with an installed .NET 4.0 application on only about half of the machines the application has been installed on.
Is there any way to debug the ...
6
votes
1answer
197 views
How to set “Break on All Exceptions”, from a Package
I want to make an extension to quickly toggle breaking on CLR exceptions in debugger.
I have made tried several approaches, neither of which is satisfactory.
Here is what I have already tried:
...
0
votes
1answer
41 views
Debug .net 1.1 code from Visual Studio 2010
I am attempting to debug a .net 3.5 web application. This application is using a business object that was created in .net 1.1. I have a strong suspicion that my error of (stackoverflow) is coming ...
0
votes
0answers
32 views
Attach Process : Can we unlock the component while recompiling
I am creating a DLL and inorder to debug it I have to attach to the application.
Some times your application takes 3-5 minutes when starting for the 1st time as it:
Launch the server which has ...
0
votes
2answers
732 views
.NET Windows Forms Datagridview mousedown event not firing
I have an application written in VS.NET Visual Basic on Visual Studio 2005.
It has a Windows form, with a DataGridView control on it to display data retrieved from a database.
I want to allow the ...
0
votes
0answers
78 views
Why visual studio 2012 debugger resumes
I'm wondering if anyone has seen this behavior (and know how to fix it):
When debugging with visual studio 2012 Update 1, the debugger just resumes execution randomly when stepping into (like if you ...
0
votes
2answers
56 views
Windows Mobile development without constant redeployment? (no edit-and-continue)
I'm developing an application that targets Windows Mobile 6 using Visual Studio 2008. The development itself is pretty easy, but I'm realizing how much I rely on Edit-And-Continue in VB.NET when I'm ...
2
votes
0answers
102 views
No one holds the lock but still thread awaits
I have a particular scenario where my app UI freezes, when I take the process dump I can see that the UI thread is acquiring the lock and awaiting
OS Thread Id: 0x27f4 (0)
Child SP IP ...
2
votes
0answers
104 views
VS remote debug problems
I am trying attach process on other PC to debug remote. But Type of code in the "Attach to process" dialog is always Native (x86 or x64) and never Managed code (my App is 100% managed). And after ...
0
votes
1answer
47 views
Weird new instance creation syntax behaviour
I have declared a property to capture the querystring of the current page. I also have a class that has same property name as the querystring variable. Below are my debug environment,
private ...
0
votes
1answer
91 views
Is it possible to interactively debug a web service while it's being executed in a Unit Test in VS2010?
Basically, I've got a pretty standard web service call, in a DLL project, running under the built debug server.
Looks something like this
<WebInvoke(Method:="POST", ...
0
votes
1answer
139 views
Application.Restart a ClickOnce VB.net application in VS2010, restarts detached from debugger
I have a ClickOnce winforms application which I am debugging in the VS2010 IDE. I have a catch-all unhandled exception handler which also gives the user the option to restart execution. Calling ...
0
votes
0answers
139 views
Visual Studio 2012 times out randomly during debugging?
I have a Visual Studio 2012 project which I do a lot of debugging with. Every so often(multiple times per day), I'll be debugging and Visual Studio will just randomly choke up for 5-10 seconds. ...
3
votes
3answers
104 views
Avoid breaking on generated code
I am using some external code which when called with certain parameters throws an exception which can be ignored. Unfortunately I can not change this external code for various reasons.
I have ...
1
vote
2answers
113 views
Control the way .NET BCL types are shown in the debugger (interested in KeyValuePair(TKey, TValue) )
There's a question here regarding the overriding of ToString() in KeyValuePair(TKey, TValue), which it's not possible.
I saw there are some attribute types like DebuggerDisplayAttribute, ...
0
votes
2answers
92 views
Hit a breakpoint when there is certain method in call stack
I want a breakpoint to be hit when there is a certain method in the call stack.
Can I do this somehow with the Visual Studio debugger?
I want to be sure my breakpoint will be hit when the code is ...
0
votes
1answer
137 views
Auto Uninstall WinRT App after Debugging Stopped
I want to automatically uninstall a WinRT app after it has finished debugging. Is this possible?
0
votes
2answers
99 views
EXE throws errors when DEBUG does not
The program has a form that pops up, you enter text in a few fields, then press close. Upon close the information entered is saved to a class newItem.
When I press F5 to debug my program everything ...
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 ...
5
votes
1answer
95 views
How can I find out which debugger is debugging my .NET app?
I already know about Debugger.IsAttached for determining if my app is currently being debugged at runtime. How can I determine more about the debugger itself?
For example, how can I distinguish ...
1
vote
1answer
323 views
Debugging List<T>.Count throws ArgumentException
I have external class Item that if I make:
List<Item> items = new List<Item>();
that hovering mouse on it during debugging shows
'items.Count' threw an exception of type ...
1
vote
3answers
91 views
VS Debug DLL invoked from system service
I am developing a DLL (in Visual C# Express) with some plugin logic for an application.
Is there any way to debug this DLL, once it get's used by the application? The application is running as a ...
1
vote
1answer
114 views
WMB8/.NET Compute Node Debug
In WebSphere message Broker 8, the new .NET compute node is awesome to interface Windows based services and handle windows things. However, it is non trivial to debug the code. I was hoping any of you ...
3
votes
2answers
320 views
Tracking Time Spent in Debugger
[ [ EDIT 2x ] I think I have worded my original question wrong, so I have scooted it down below and rewrote exactly what I am trying to get at, for future readers. ]
...
0
votes
0answers
44 views
Code sources for “Debugging Mitsrosoft. No 2.0 Applications” book
Sorry for my bad English.
I bought the "Debugging Microsoft. No 2.0 Applications" book (Russian translate, paper version), the author - John Robbins. It is old book, for MS Visual Studio 2005, but it ...
3
votes
1answer
95 views
setting up assemblies for debugging
.Net assemblies have pdb files for debugging. The PDB file points to the exact source location among other details. This is good if I am building the assembly and debugging it locally. The problem ...
9
votes
5answers
4k views
'Step Into' is suddenly not working in Visual Studio
All of a sudden, I have run into an issue where I cannot step into any code through debugging in Visual Studio. The step over works fine, but it refuses to step into (F11) any of my code. This was ...
2
votes
2answers
421 views
How to see workflow variables when debugging WF 4 Workflow Service
How can I see the current value of workflow variables when debugging a WF 4 Workflow Service (hosted in IIS 7.5 / AppFabric)?
I attach Visual Studio 2010 to w3wp.exe but when a breakpoint on an ...
3
votes
1answer
112 views
How Can I Save a Generated Symbol File?
I'm testing my app with Project White. The binaries for this project include a DLL from the Castle project: Castle.DynamicProxies2.dll (or something along those lines). Unfortunately, a symbol (PDB) ...
2
votes
2answers
549 views
C# can't start debugging application in IDE
I have C# application built in VS2010. Recently I changed something in project properties and now I have strange problem:
I can't start debugging of my application (F5). When I press F5 project ...
0
votes
0answers
86 views
Get line numbers in exception when module name is renamed
In our release builds to customers we've decided to include pdb files so that once there are exceptions in our log files, we can see line numbers.
We have many clients and basically they all get same ...
0
votes
1answer
182 views
winforms keeps freezing -endless loop? how do i un-freeze?
I have a program which displays an image to the windows form, and places a message within the image as it paints it (this works fine) i then have a method which reads the message back. However, doing ...
0
votes
3answers
174 views
Unhandled exception, unable to debug
I'm trying to debug my c# application that check MIPS syntax. But its not allowing be to debug it. No matter where I enter my break point it gets ignored, including the first line of the Main() ...
3
votes
1answer
133 views
Why can I not debug JavaScript and .NET4 code at the same time with Visual Studio 2010?
In VS2008 and the 2.0 CLR, I would almost always attach to both the web server to debug .NET code and Internet Explorer to debug script code. I could set breakpoints on any layer and it was very easy ...
1
vote
1answer
105 views
ConditionalAttribute vs Debugger.IsAttached
What is the difference between ConditionalAttribute and Debugger.IsAttached??
Which of this mechanism is better to use??
If I write:
[Conditional("DEBUG")]
private void Method()
{
//Code
}
...
-1
votes
1answer
165 views
Why can't I run debug version of .NET program in the machine didn't install visual studio
I have a debug version of a .NET 4.0 application, I install the .NET 4.0 Framework in in this machine, however, I didn't install Microsoft Visual Studio.
Why I can only run Release version of ...
5
votes
2answers
167 views
Why do my breakpoints duplicate in Visual Studio?
I recently started having problems with breakpoints in Visual Studio 2010. When I set a breakpoint and then start debugging, another breakpoint appears on some other line nearby. The screenshots below ...
1
vote
2answers
302 views
Debugging file handle issues in c#/.NET
I have a program that in turn accesses a DLL. It uses files in various ways, creating them, copying them and establishing them as attachments to an emailMessage object. I have a 'file in use' error, ...
3
votes
3answers
232 views
How a variable can have two values at the same time?
I guess with what I'm going to write I should first clarify, it's not something I would like to achieve. It is something that happened to me and I am trying understand how it is possible, so I can fix ...
4
votes
2answers
688 views
View Exception.Data in Watch Window while debugging
How can you easily watch the contents of the Data property of an Exception in the Watch Window while debugging in Visual Studio? It is of the weird type System.Collections.ListDictionaryInternal.
I ...
5
votes
2answers
284 views
Enable breakpoint B if breakpoint A has been hit
I'm often find myself setting a breakpoint A somewhere in the code and manually enabling one or more breakpoints when this breakpoint is hit. A typical case is when I'm debugging an unittest and don't ...
4
votes
2answers
255 views
Disable/remove child Breakpoints?
I'm debugging an ASP.NET Website with C# in Visual Studio. When I set a breakpoint (during debug), over time, the created breakpoint will accumulate many child breakpoints. (See here.)
Now, sometimes ...
1
vote
2answers
158 views
Is there any way to access the managed debugger in a Visual Studio package
I'm trying to write a Visual Studio package that shows a live object graph during debugging.
Is there any way to access the data of the managed debugger from within a VS 2010 package? I am aware of ...
10
votes
2answers
2k views
C# VS2010 Entering break mode failed
I was having some problems with my breakpoints later in my program saying that they would not be hit because the source code and the compiled code was different. I decided to put a break point on my ...
5
votes
6answers
385 views
How to get ToString() to show up in Debug
I'd like to get ToString() to display for a class under my control in debug mode.
It'd be nice if this was the first thing to show up when you hover over a variable with the mouse. Is there an ...
3
votes
1answer
889 views
Visual Studio 2010 Debugger problem - unregistered Error?
I'm having some problems with Visual Studio 2010's debugger when using the unit-test debugging mode.
When ever I hit a breakpoint in a test all the object data is replaced with question marks and it ...


