0
votes
0answers
8 views

How to debug with continue and breakpoint in MFC CView::OnActivateView in VIsual Studio 2010?

I am encountering a problem trying to use the debugger in Visual Studio 2010. I want to watch what happens each time my CView object calls OnActivateView so I set a breakpoint in OnActivateView then ...
1
vote
1answer
33 views

Visual Studio: Debugging a referenced DLL, I have source in another SLN

Can anyone help? I am trying to debug a project that has a reference to a DLL that I added, the DLL is stored in an external directory and I just added a reference. Now of course I can debug my ...
0
votes
0answers
14 views

Visual Studio 2010 Timeout issues (MVC3 Account Model)

I a using the default ASP.Net log-in functions for my MVC3 website, when debugging and attempting to log in I receive a timeout error that alerts me that the 'Account' model is taking too long to ...
-1
votes
1answer
34 views

Visual studio 2010 throwing error while debugging, throws an error [closed]

I am developing my webcrawler in csharp visual studio 2010, It is multi threaded application, uses httpwebrequest and httpwebresponce for scraping. The application is running fine if I run it ...
0
votes
1answer
33 views

Stop debugger on current line of code being executed in Visual C# Express 2010

So my program seems to be stuck in a loop somewhere. Unfortunately it doesn't run out of memory or overflow the stack, so it just keeps running. To figure out what it's doing I could of course start ...
0
votes
0answers
36 views

Debug in new instance of class

I have a windows form wherein I have a button that copies the content of the form to a new instance of that form. When debugging, the watches only get the value for the variables in the current form ...
0
votes
0answers
44 views

Visual Studio Variable Not Created When Manually Setting Next Statement

I just started using a new Windows 7 x64 machine today and experienced something new during debugging. I have code that can be thought of as the following: if(/*Some criteria that evaluates to ...
0
votes
0answers
116 views

Breakpoint not working in VS 2010?

I am working with visual studio 2010, windows forms when i am trying to debug my project it is not hitting the breakpoint and i am unable to debug my project.I have tried this 1) Right click on ...
0
votes
1answer
14 views

How to determine what caused a property to change?

I'm using Visual Studio Express 2010 for a small VB.Net project. I have a problem with unexpected changes in the currentCell property of a dataGridView control, and I can't understand what actually ...
1
vote
1answer
28 views

Deployment in Debug mode and Release mode

I need your help in understanding this. What is the major difference in deploying a dot net application in Debug mode and Release Mode.? How to they differ from the developer's perspective and also ...
6
votes
1answer
195 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
102 views

Continue debugging in VS2010 while all threads are in sleep, wait or join

I have an app where there are several threads, and most of the time they are just waiting for an event to happen (eg with a AutoResetEvent.Wait). In such a case if I try to use the immediate window ...
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 ...
1
vote
0answers
59 views

Capture VS Static variables while debugging in EnvDTE

The DTE object provides a way to capture all the variables that are in scope: dte.Debugger.CurrentStackFrame.Locals. What method can I use to list all the static variables?
0
votes
1answer
99 views

Permanently enable just my code

I'm using visual studio 2010, and every time I open it, "just my code" under tools->options->debugging is disabled. Does anyone know how to permanently enable this? I have the following extensions ...
0
votes
0answers
74 views

how to debug SQL Parameterized Query in Visual Studio 2010?

how i can build a wrapper around the System.Data.SqlClient for debugging SQL Parameterized Query in Visual Studio 2010 as referenced in Finding the SQL output of a parameterized query ? or any better ...
2
votes
2answers
95 views

Is there a way to debug VB.NET With clause in Visual Studio?

Sometimes you don't really care about the name of a variable, because it does not go outside of your sub's scope. In fact, specifying the name would add an extra line of code. Also now you have this ...
1
vote
1answer
118 views

DLL Missing from Modules List in VS2010

I've really been banging my head against the proverbial wall over this one. I have a solution which contains both C# and C++ code projects. I often call the C++ DLLs, which are compiled in this ...
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
1answer
147 views

VS2010 Just in time debugger doesn't show entire message

I often get the Just-in-time debugger window, and most often no message is shown, but some times I can't see the entire exception, which could be useful. When I try to run the debugger I always get ...
3
votes
0answers
152 views

Why does this dictionary display differently in debug between VB.NET and C#?

I've been working in C# and VB.NET a lot lately, and the other night I noticed this strange behavior when running some through a debugger and trying to look at the contents of a Dictionary object. I'm ...
1
vote
0answers
209 views

How to resolve conflicts between Visual Studio 2010 and Visual Studio 2012

I have a Windows application written in Visual Studio 2010. It connects to a web service and does other database calls as well. When I installed Visual Studio 2012 the above mentioned app doesn't ...
0
votes
1answer
86 views

Executing only part of the code in Release mode

I have some C++ code that I'd like to debug. As it's often the case, my bug appears only in certain conditions that cannot be reproduced with tiny datasets, and it appears after going through multiple ...
0
votes
1answer
84 views

Stop VS2010 from automatically attaching to browser process

I'm currently working on a web application in Visual Studio 2010. I prefer to debug the Javascript in this application using the development tools in IE, so every time I debug the app I have to ...
1
vote
1answer
45 views

Make externally-run debug build executable exception open in VS?

I have one developing computer and one beta-test-computer. On the beta I run Debug-build executables copied from the VS project Debug folder of developing computer. Is there any way to make the ...
0
votes
1answer
102 views

Capture VS local variables while debugging in EnvDTE

Is it possible to capture the debug data that's used by the locals and debug window, using EnvDTE for a .vsix visual studio extension? Or is it possible through another method? I would like to create ...
1
vote
2answers
136 views

How to list threads when debugging in Visual Studio Express 2010

I am trying to track down the reason why my WPF application is not ending cleanly while debugging. By 'cleanly' I mean that all the windows are closed, I can see various messages in the Output window ...
1
vote
1answer
83 views

Extend the Visual Studio Locals/Autos window through code

Is it possible to extend what appears in the VS Locals/Autos window through code? Like through a Visual Studio Extension? I would like to iterate through the displayed variables and manipulate how ...
2
votes
3answers
67 views

How can I tell which process I am debugging (attached to multiple processes)?

I'm debugging a windows service which has two running instances, by attaching to both instances. I am doing this because I know only one instance will hit my breakpoint, but I'd like to know which ...
0
votes
0answers
42 views

Changing the display name of a variable in the VS Locals Window

We have a custom scripting language that generates chunks of C++. The way it has been designed, it generates "thisPtr" as the "this" object for each class type in the C++ side. I was wondering if ...
0
votes
2answers
50 views

Debugger always saves my project and I can't step back

I often need to return to a previous milestone. There is a vicious cycle: my error is revealed only during debugging, but I can't step back because the debugger has saved my project. In simple ...
0
votes
1answer
86 views

visual studio can not find the pdb file [closed]

I give up. After 5 hours google, I still can't find the answer. I have a WCF web service project in my solution. I WAS able to step into it and debug. But I don't know why I cannot do it now. (All the ...
1
vote
0answers
120 views

Running msvsmon as a service in “no authentication” mode

I am trying to debug a process written in C++ that gets launched prior to user logon in a virtual machine. The VM is a member of a test domain. My dev machine is not domain-joined, so I can only use ...
2
votes
0answers
103 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 ...
1
vote
2answers
177 views

How do I view the transformed web.config while debugging (SlowCheetah)

I've installed the SlowCheetah plugin in VS 2010. I can Preview Transform on web.debug.config and it looks correct. However I don't think the transform is occurring while debugging. How do I view the ...
0
votes
1answer
45 views

Why aren't symbols loading when attaching to running process?

I've been trying to attach to a process on a remote machine to debug an issue. I was able to connect but the VS debugger warned that: The following module was built either with optimizations ...
0
votes
0answers
84 views

Visual Studio is stopping in the disassembly when no breakpoints are set up

I have a project using interop code (managed c++ calling unmanaged c++) that I am trying to debug into. Currently I have no break points set up, and yet Visual Studio is stopping in the Disassembly ...
1
vote
2answers
383 views

Debug a report using Visual Studio

I have a problem with my SSRS report when it runs from Dynamic ax 2012. I debugged it and I found out that the problem is with my SSRS report that I created in Visual Studio. I want to debug it there, ...
2
votes
1answer
91 views

VS 2010 - output window - how to enable “find message in code” button?

When I build a Windows Forms project in VS2010 in debug mode (F5) a window appears titled Output Window. There are buttons along the top of the Output Window: "Find Message in Code", "Next Message", ...
0
votes
1answer
25 views

Debugging in VS

Recently I noticed some strange behavior when debugging ASP.NET application. When I press F10, sometimes it doesn't go to the next code line, but just stays on the same until you press it 2-3 times. ...
0
votes
0answers
52 views

What settings does Visual Studio 2010 use when calling MiniDumpWriteDump()?

I've been trying to optimize the size of the dumps generated when our (C++) program crashes. I was wondering in anyone knew what it was passing to MiniDumpWriteDump() when you tell it to make dump ...
2
votes
1answer
57 views

Different behaviour of code (debugging or not & different computers)

I have created a program which runs 2 threads synchronized using events (SetEvent(), WaitForSingleObject(), WaitForMultipleObjects()) in Visual Studio 2010. The following happens: when I run this ...
0
votes
1answer
120 views

A first chance exception

This seems different from all the other messages about first chance exceptions :) I'm trying to track down an occasional exception that gets thrown in the serial port inbound data handler. When it ...
2
votes
2answers
541 views

Visual Studio 2010 Thinks it's in Debug Mode (but it's set to Release mode)

I have verified in the project properties and solution properties, configuration manager, that my solution and project are set to x64 Release. The output path is "bin\x64\Release\". I have the ...
0
votes
0answers
45 views

Visual Studio 2010 debugging collections issue

I've never been able to view the items of a collection (even a simple List<string>) with the Visual Studio debugger and I'm not sure why. Whenever I expand a collection node, the debugger would ...
0
votes
0answers
59 views

Why does Visual Studio stop debugging my app?

There's a really weird bug in my app (C#, WPF based UI): in a certain scenario, if I unpin the explorer, I'm getting tons of exceptions (System.NullReferenceException – Object reference not set to an ...
1
vote
1answer
86 views

Hiding fields listed twice from debugger window

When inspecting the Response of a Webservice in the debugger window, every field of the response is listed twice - once with an appendix of Field. How can I hide the second listing? The ...
1
vote
1answer
179 views

Unable to access Temp files while debugging winForms project in Visual Studios 2010

I have several programs that I have created in vb.net visual studios 2010. I have been working on these programs for months with no problems. Recently I started having an issue where I can no longer ...
-2
votes
1answer
178 views

Specified cast is not valid when run from debug folder in C#

i have an application which gives me error saying Specified cast is not valid when tried to run .exe from bin/Debug folder. I have no clue why it is happening since i run the app from visual studio ...
0
votes
1answer
87 views

ReleaseHandleFailed was detected when debugging with MSTest

When I run my unit tests in debug mode, I get a recurrent exception like this: I click "Continue" and then the test goes on without any problem. I have to do this around 10 to 15 times per test I ...

1 2 3 4