Questions related to debugging methods and tricks in VisualStudio

learn more… | top users | synonyms

3
votes
0answers
405 views

Visual Studio 2012 not able to debug non-x64 .net applications: Access Violation

I upgraded (clean install) from Win7+VS2012 to Win8+VS2012. I ran into a problem just after that: When I try to run any project with the processor target AnyCPU or x86, vshost.exe crashes immediately ...
3
votes
0answers
179 views

Debugging file scope in Visual Studio

In Visual Studio 2012, I have this uber-simple C++ program: #include "stdafx.h" #include <iostream> int _tmain(int argc, _TCHAR* argv[]) { std::cout << std::cout; int i = 1; ...
3
votes
0answers
293 views

Debug Request Timed Out (System.Web.HttpException)

According to the MSDN regarding system.web httpRuntime executionTimeout: This time-out applies only if the debug attribute in the compilation element is False. Therefore, if the debug attribute is ...
3
votes
0answers
299 views

How to use Visual Studio debugger visualizers built against a different framework version?

I compiled the ExpressionTreeVisualizer project found in the Visual Studio 2010 samples but when I try to use it in a .NET 3.5 project I get the exception below: Could not load file or assembly ...
2
votes
0answers
22 views

Visual Studio 2010 - Debugger is not executing current Javascript source code

I've never seen this before and I'm getting very frustrated. When I run the VS 2010 debugger, it seems to remember and run "old" Javascript code which is not there anymore. When I step through the ...
2
votes
0answers
108 views

Why doesn't leak detection give me line numbers?

I recently converted a program using raw pointers to std::shared_ptrs and wanted to ensure there was no memory leak. I looked at MSDN's Finding Memory Leaks Using the CRT Library page and followed the ...
2
votes
0answers
106 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
119 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
0answers
35 views

Asp.NET application is supressing errors on localhost.. Why?

I am working on a web application, developing in VS 2012, and have lately been deploying fairly often to a test server. I keep a separate web.config for deployment, as I got tired of copying and ...
1
vote
0answers
14 views

EmguCV vs2012 visualizer

I'm using EmguCV in VS2012. Following this tutorial, I copied the dlls into VS debugger directory. However when I click the "view" icon on the variable, there's an error like this: Unable to load ...
1
vote
0answers
9 views

VS macro for RunToCursor functionality with ignoring breakpoints

I tried to create a simple macro to ignore breakpoints when doing RunToCursor. But for some reason the RunToCursor call doesn't work at all ("Operation not supported") and breakpoint states aren't ...
1
vote
0answers
185 views

How to get immediate Visual Studio 2012 javascript debugging when attaching to IE10?

When I start a web application with VS2012 in debug mode, and the javascript in the page raises an exception this happens: VS - debug (F5) IE10 opens and the source file with the error line is ...
1
vote
0answers
117 views

MPI debugging with VS2012

The cluster debugging option is removed from Visual studio 2012. So is there any way to debug MPI apps in VS2012 ?
1
vote
0answers
139 views

How to integrate JavaScript Compiler (like Jurassic, ClearScript) into Visual Studio 2010 shell

I have a project in which I have to support javascript debugging from Jurassic or ClearScript or any other open source java script compiler for .net into to the Visual Studio 2010 Isolated shell. My ...
1
vote
0answers
73 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?
1
vote
0answers
136 views

C++ Linker Errors (LNK 2019: unresolved external symbol) / Project Specific

Main Issue I am trying to build a homework project involving linked lists and some custom classes, but when I build the project, I get the following 3 linker errors... 1>customerImp.obj : error ...
1
vote
0answers
128 views

Cannot set current thread apartment to STA in C# Windows application main program

I've created a small Windows Application project in Visual Studio 2010, and I cannot set the apartment property of the main thread to STA, it is set to MTA by default, even with the property ...
1
vote
0answers
128 views

WP8: C++ memory leak detection like CRT library

Microsoft Visual Studio offers the CRT library (http://msdn.microsoft.com/en-us/library/x98tx3cf.aspx) for memory leak "detection". But this library does not work on Windows Phone 8. Is there a ...
1
vote
0answers
65 views

How to debug code in visual studio 2005/2010 which is hosted to IIS of some other system(windows xp) which is in LAN?

I deployed published code of my website which is made in visual studio 2005 to my system's IIS. Website is working fine. Same code is deployed to QC environment for testing, but code is not working ...
1
vote
0answers
66 views

Avoiding debugger halt using Transient Fault Handling Application Block

I started using Transient Fault Handling Application Block (TFHAB) together with Azure Caching. It's easy to use but when in debugger, the error thrown within caching provider and passed out from ...
1
vote
0answers
257 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 ...
1
vote
0answers
121 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 ...
1
vote
0answers
170 views

VS2012 ASP.NET website running System.Exception

I have a problem with my VS2012 Ultimate RC. When I click on start debugging for my website application built in ASP.NET 4.5 web forms, the website builds, no error, but I get an error message ...
1
vote
0answers
194 views

Intellitrace production not creating itrace file

Everything so far went great with Intellitrace, however now when setting up production collecting, it's just not doing it. No error, everything is...just doesn't create the .itrace file. So what I ...
1
vote
0answers
52 views

Are the values of function arguments read from a .dmp file reliable?

This .dmp file was dumped by a release build. Opened with visual studio C++ (2010), in the call stack view, the values of function call arguments are strange, some values are missing while some others ...
1
vote
0answers
182 views

ConfigurationErrorException when debugging on Visual Studio 2010, .Net Framework 4, 32-bit

I've run across an issue when debugging applications on VS 2010. This is a simple command-line app: namespace HttpTest { class Program { public void testHTTP () { ...
1
vote
0answers
690 views

How to fix Visual Studio debugger watch window showing decompiled values

I have recently installed the RTM version of VS 2012, and when I run the debugger the watch window gives me what appears to be a decompiled vision of the local values. My initial thought was that I ...
1
vote
0answers
52 views

Visual Studio debugging visualizer in Visual Studio 2010 Phone Express not working

I have created a simple Visual Studio debugger which just does not work at all in Visual Studio 2010 Phone Express - it doesn't appear in the list of options. I realise Express editions have ...
1
vote
0answers
92 views

in visual studio c++ debug, how to convert scentific float value in immediate window and locals window

in visual studio c++ how to convert scentific float value in immediate window and locals window, e.g. 2.6784184492221229e+271 (including denomalized number). for example, in Locals window, VS c++ ...
1
vote
0answers
101 views

Disable local debugging when start debug of a solution containing Server Project?

I have a solution containing various projects including Web App and SQL Server Project. When I set Web App as startup project and hit F5 to start debug, I'm getting the following error: Failed to ...
1
vote
0answers
196 views

Process Name is Disabled on VS 2010 Debug / Attach to process

I'm trying to attach VS 2010 debugger to a process (processX), however the process i want to debug is started from another process (processY). So in the process list window processX is disabled. I've ...
1
vote
0answers
146 views

STLPort debug in VS2010

Do you know how can I debug STLPort containers in VS2010 ? I want to debug them, as easy as STL containers.
1
vote
0answers
466 views

Visual Studio Attach to Process - change default automatic code type (Silverlight instead of Script)

I'm attaching Visual Studio Debugger to IE instance which is running silverlight application, using Attach to Process dialog. In the list of available processes there are Script, Silverlight and x86 ...
1
vote
0answers
254 views

How to indicate to Visual studio where third party dll source code is?

I am writing a C++/CLI for a C library. I have the source code of the library. When I launch a debug session, I can't step into the C dll, VS says that the source code is not available. So how do I ...
1
vote
0answers
106 views

Break on Arbitrary Event in Visual Studio

I'm trying to trace some legacy code at work, Visual Studio 2003 and .Net 1.1. There are actions done on Keypress and Text change that I know happen but, the Text fields themselves are made ...
0
votes
0answers
16 views

Trouble debugging ASP.NET site: loading debugger times out

Intermittently, my team's (overweight) VS2010 solution fails to load in the debugger. We get informed that "The web server did not respond in a timely manner". Workarounds for when this happens: ...
0
votes
0answers
18 views

Script Documents in Visual Studio 2012 for Firefox

I know how to debug scripts and aspx controls using Visual Studio and Internet Explorer (Script Documents). However in IE app works very well. On the other hand in Firefox (latest) I get many errors ...
0
votes
0answers
6 views

How to debug RemoteThreadProc thread

IN visual studio, I write a thread and inject it to another targeted process. After setting breakpoint, I found the the remote thread does not stop in given breakpoint(the invocation of Initialize() ...
0
votes
0answers
23 views

View the content of std::vector from a static library while debugging in VS

I have a C++ project in Visual Studio 2010 and I have my static library "MyLib.lib" which contains the structure definition: struct TWaggon { int someData; } And I have a header file "Trains.h" ...
0
votes
0answers
24 views

jQuery .Filter() only works in debug mode (Chrome and Firefox)

I have a function that works just fine in IE, and while in debug mode, works fine in Chrome and Firefox. It's when the code is not in debug mode where the function does not work in Chrome and ...
0
votes
0answers
39 views

WCF Service Host error while attaching to process in Visual Studio

While attaching to some process in Visual Studio 2012, I'm getting such an error: Complete exception is shown below: System.BadImageFormatException: Could not load file or assembly 'C:\Program ...
0
votes
0answers
27 views

Windows Phone Profiler don't work in project with multiple assemblies and pcl

I have a problem with the Windows phone application analysis tool in VS 2012, when I start any of the three available profiling modes on my project with multiple assemblies, the project is being ...
0
votes
0answers
18 views

How to migrate VS2003 solution to VS2010?

I am having my web application which is developed by Visual studio 2003. Now We are migrating this application into Visual Studio 2010. So I tried to open my VS2003 solution file in VS2010 but I am ...
0
votes
0answers
28 views

Visual Studio 2012 not debugging or compiling one specific method

My debugger in VS 2012 will not break at any breakpoints in only one specific method in a class. It also wont step into that method from any calling code. Other methods in that class are stepping ...
0
votes
0answers
34 views

Missing some references in debugging mode but fine working in release mode

I'm using visual studio 2010 with c# and working with one wpf project. I found one problem is my project working fine in release mode with no issues. but in debug mode it's con't run showing some dll ...
0
votes
0answers
28 views

Debugging not breaking in visual studio 2012 cakephp project

I'm using the PHP Tools for visual studio 2012 and I am trying to get the debugging to work. My project is a cakephp project. I have tried setting my project properties to use a start url. I made a ...
0
votes
0answers
20 views

Find functionality within call stack

Recently when working on a legacy application I've often found the need to search for specific text within (what would be) the callstack at runtime. For example: int age; void Method A() //Search ...
0
votes
0answers
81 views

MVC Html.ActionLink and Url.Action slow to render during Debug mode in Visual Studio

tl;dr Displaying a view in MVC with lots of records and 4 rendered links per record takes a long time to load while running in debug mode in VS2012. I have an ASP.NET MVC4 web application and one of ...
0
votes
0answers
26 views

How to see local and auto variables values on remote debugging

sAs I wrote in the subject I can't see that values of variables in remote debug mode. The window of auto and locals are empty during debug. Any ideas why? and how can I solve it? When I'm trying to ...
0
votes
0answers
67 views

“Microsoft Visual Studio is waiting on an internal operation to complete”

I get the Microsoft VS Delay Notification pop up consistently when I am trying to attach the debugger to a remote process (Native only, with no authentication). The process runs as a service on the ...

1 2 3 4