1
vote
1answer
28 views

Debugger shows invalid instruction

Sometimes it happens, that Visual Studio debugger shows invalid current instruction. The simplest possible reasons are: Outdated .pdb files. These files contain information about which offset of the ...
1
vote
1answer
16 views

Manually show VS tooltip when Resharper error prevents intellisense on hover

In Visual Studio, normally when I hover over a variable it will display the type while editting code and the value while debugging. How it should look when you hover over tablename: Resharper ...
0
votes
0answers
30 views

Visual Studio Express 2012 Web debug randomly not refreshing browser cache with changes

Been using Visual Studio Express 2012 Web for a few weeks now learning JavaScript, HTML5 and CSS for a web based application. As a .NET developer its great to have the familiarity of VS (although ...
1
vote
1answer
27 views

Failed to Attach to Script process in VS2010

I am trying to attach to w3wp.exe to debug classic asp. i am attaching to type "Script", but get the following error: Failed to attach to these type(s) of code: Script: A debugger is already ...
0
votes
0answers
22 views

Access the Visual Studio Web Server Using a Different User Context

Does anyone know if there is a way to allow access to the Visual Studio Web Server from alternate user accounts? My application relies heavily on integrated authentication and I'd like to do regular ...
0
votes
1answer
29 views

Multidimensional array visualizer for Visual Studio using autoexp.dat

I have been trying to create a visualizer for Visual studio in autoexp.dat file. Can someone give me a few pointers? Here is a stripped down version of the class declaration: template<class ...
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 ...
4
votes
1answer
78 views

How to mantain the Visual Studio debugger in only one thread at a time in a multithread program?

In a multithread application, when I create several threads, how can I keep the debugger in only one of them if they keep sleeping and waking up? I'm using C#. Complementing: my application needs to ...
7
votes
2answers
103 views

Unmangling (pre .NET 4.5) async/await stack traces

Since pre .NET 4.5 runtimes (including SL/WP) are not async-aware, the stack traces they generate show compiler-generated class/method names (like d_15). Does anyone know of a utility that generate a ...
1
vote
2answers
32 views

TPL Break on unhandled exceptions

I am using async await as well as Task.Factory.StartNew in my application but one thing that i noticed changed is that visual studio is no more breaking when an unhandled exception occured Here is ...
0
votes
0answers
41 views

Visual Studio 2012 - event on “stop debug”

i've been wondering if there was any way to perform an action when debugging is stopped inside Visual Studio 2012. For example, I start debugging an application that opens a window and then uses ...
0
votes
3answers
47 views

Visual Studio Debugger displays wrong values for native types

I am writing a program in managed C++ and native C++ using Visual Studio 2008 (Version 9.0.30729.1 SP) and .NET 3.5. When debugging, Visual Studio displays obviously wrong values for types like size_t ...
0
votes
0answers
43 views

What does the VS debugger mean when it says “exception is not handled by user code”?

I'm using MiniProfiler and as part of its initialization a Sql Exception is thrown. Miniprofiler handles it internally but on top of that I have my own try/catch but VS debugger still thinks that the ...
0
votes
1answer
34 views

Watch program settings during debugging

I have got a program where something is odd with the program settings which are edited at runtime. (I do save them, that's not the problem). To find out about the problem, I want to do the stepwise ...
0
votes
1answer
32 views

Pdb's make my project always 'out of date'

My project is always out of date because of pdb's. In VS output window i see always: 'Project is out of date. Input file foo.dll is older than output foo.pdb'. Always the same. Why this happens? How i ...
1
vote
1answer
44 views

Step into dll not possible (pdb available)

I have a solution with many projects and some of them are located outside of the solution path (I copy the compiled dll's and pdb's as Post-build event with xcopy)! If I want to step into the dll's ...
0
votes
0answers
36 views

Looking for program to match dump file with binary and pdb

I've got the following situation: I got the (mini)dump file of a crashed application. I haven't got the exe and pdb file, for which the dump file was created, but i have the exact source for the ...
1
vote
2answers
191 views

Visual Studio 2012 Default Debug IE Browser Version

Details first: using VS2012, IE10, Windows 8, IIS 7.5 express, ASP.NET webforms application. Problem: when I debug an ASP.NET web forms application, IE10 opens as expected but it's under IE10 ...
0
votes
3answers
81 views

How to view all Session key/value pairs while debugging?

When debugging in Visual Studio (.Net MVC4), is it possible to see all Controller.Session key/values at once? I can view all keys by typing Session into QuickWatch and expanding "Results View". E.g: ...
2
votes
2answers
66 views

How do I rectify inconsistent Unresolved External errors? [duplicate]

I'm trying to wrap my head around C++ developement using the SFML library. I'm following a tutorial (http://www.gamefromscratch.com/page/Game-From-Scratch-CPP-Edition-Part-7.aspx), and using visual ...
1
vote
1answer
41 views

VisualStudio - aliases for very long watch variables

I am trying to debug a tree-like structure, so i have made a watch on each level. The lower i go, the watch variable name is getting ridiculusly long. Is there a way to rename them from: ...
0
votes
0answers
66 views

Open web browser when starting console application debug in Visual Studio

I work on a web server that runs as a console application. It is based on HttpListener. When I start the project in Visual Studio 2012 it opens console. In addition to starting the console I need to ...
1
vote
0answers
73 views

Dump Values of All Variables in Visual Studio

My program does a funky thing where it works only sometimes, mostly after running it a few times. What I want to do is copy the values of all the variables of when it doesn't work and do the same for ...
8
votes
1answer
145 views

Is there a keystroke in Visual Studio to toggle break on all CLR exceptions, first chance?

To toggle break on all exceptions right now, I have to: Debug->Exceptions Click in the Thrown column next to "Common Language Runtime Eceptions" OK Normally I want to stop on all exceptions, but ...
1
vote
0answers
22 views

Visual Studio stop tracing into strlen.asm

How can I prevent Visual Studio from tracing into strlen() and other such functions? I have a source line like: i = my_function(x, strlen(x)); When I step into this line of source, I don't want to ...
1
vote
2answers
35 views

Automation of debugger attachment

I have two projects, one is a "front-end" or loader project, the other is a web service, that is actually in a separate folder/solution entirely. I'm already using my front-end, to load that project, ...
0
votes
1answer
63 views

Nvidia Nsight 3 with OpenGL 3.3 error: Thisversion of OpenGL does not support capabilities

If I start graphic debugging with Nsight 3 I get the following error: "This version of OpenGL does not support capabilities and extensions required by Nsight." Which OpenGL version should I use? Up ...
3
votes
4answers
59 views

Starting debugging only from a certain point in time in C# with Visual Studio

I have a program which is a small Tetris like game. I have a problem with my collision detector in some configuration, I want to debug it, but the game doesn't start in the "problematic" state, I want ...
1
vote
2answers
44 views

Visual Studio: Library output path flexibility

Okay, here's the problem. I have 2 projects. One is the main project (executable), the other one is a library. MyNameSpace.Libraries.TheHolyMefLibrary MyNameSpace.TheProduct The default output ...
0
votes
1answer
39 views

how can i attach visual studio to child process of a process on remote machine?

When I run a process on remote machine, say A.exe, it spawns child processes, lets say, childA.exe. What I'd like to do is, I want visual studio to kick in (hit a breakpoint) as soon as childA.exe is ...
1
vote
1answer
180 views

Visual Studio 2012 Debugger suddenly stops while debugging Azure project

When I'm debugging my Azure project (1 Web + 1 Worker Role instance) locally, the debugger often just stops and the role instances are restarting. I have no clue why this is happening, there are no ...
1
vote
0answers
18 views

How to debug fluent APIs?

Fluent APIs are awesome. They give concise and readable code. But it is a severe pain when something works as not expected. Are there any ways to see the intermediate results of the method calls ...
3
votes
2answers
203 views

how to Javascript(only) debug on Visual Studio?

I'm developing a webapplication (asp.net mvc 4) with Microsoft Visual Studio 2012, and as the solution is getting bigger, the debug is getting slower. Need to know if there is a way to debug only my ...
-1
votes
1answer
153 views

How do I output code while debugging in Visual Basic 2010?

When i'm debugging my application something is not right, and i can't contunie. So is it possible to see the output code of my app while im testing it to see what is wrong? I open the output window ...
0
votes
0answers
43 views

Debugging VISTA application built with Visual Studio 2012 on VISTA with Internet access?

Here is my question: I use MS Visual Studio 2012 to build an app that must run on VISTA (FYI, it runs correctly on 7 and 8). My computers (builder and target) have no access to the internet but are ...
3
votes
2answers
184 views

How to count the amount of concurrent threads in .NET application?

Having read Parallel.ForEach keeps spawning new threads I am still in doubt whether it is a correct method of counting the number of concurrent there threads? What I see is that method counts the ...
2
votes
2answers
74 views

Why is Debug.Print discouraged?

I have seen a few different answers on SO that discourage the use of Debug.Print while debugging applications .. but nobody ever goes into exactly why its bad. I googled it, of course, but the ...
2
votes
1answer
115 views

Quick way to toggle 'break on all exceptions' in VS2012?

I regularly find it very useful when debugging to switch on the Common Language Runtime Exceptions: Thrown option in Visual Studio's Debug > Exceptions screen. I'd like a quick way of doing this, ...
0
votes
1answer
112 views

DebugView not showing debug output from VB.NET program

I am using Debug.WriteLine() in a VB.NET program. I can see the debug statements in Visual Studio's "Output" window, but not in DebugView. I even tried the following: Using DebugView with .NET ...
3
votes
2answers
104 views

How do I get the return value while debugging?

I looked through SO but couldn't find the answer, I'm sure it's there though...? While debugging, how do I get the value of the return statement if I put a breakpoint on it? I like to condense to a ...
0
votes
1answer
58 views

Run instance method with visual studio command while debugging

I was wondering if there is a trick somewhere to be able to run methods with a visual studio command or something. For instance, lets say I created a new instance of type Connection in void Main and ...
0
votes
2answers
109 views

Exception doesn't be thrown to parent function

I use VS2012 for my project, I am handling the Socket exception when server cannot send message to target machine but It occurs that when It cannot send msg (I already put it in trycatch) Debugger ...
1
vote
0answers
88 views

What is the thread marker in Visual Studio 2010?

I am having difficulties to follow what is written in MSDN article: Walkthrough: Debugging a Multithreaded Application (Visual Studio 2010) The section "To discover the thread marker" tells: ...
0
votes
1answer
71 views

Resolving 'Could not load type' error

I have been trying to fix this error for hours and hours, I tried everything I could do so with no success. I am realitvely new to C#. I was wondering if someone can help me identify how I can begin ...
0
votes
0answers
64 views

Debugging using Emacs Grand Unified Debugger and CDB (from Microsoft Debugging Tools) with Visual Studio 2010

I am trying to set up debugging in emacs using cdb-gud from here: http://www.emacswiki.org/emacs/cdb-gud.el I'm using: CDB version: 6.11.0001.404 Emacs 24 The C++ application I want to debug, built ...
1
vote
1answer
84 views

Debugging an executable in visual studio

Want to debug an executable under debugger. How to do it in visual studio. Windbg has an option of open executable. But I find this is missing in VS 2010. The question is not exactly same as Debug ...
0
votes
1answer
57 views

VS2005 crashes often when compiling

I can change one small thing commenting/un-commenting it and VS2005 will either crash or not crash for no additional reason in either case. Problem signature: Problem Event Name: APPCRASH ...
1
vote
1answer
59 views

How to pause deadlocked program and examine stack trace of each thread (VS, C#)?

I've reproduced the Windows Form application Locked Up article. It is for Visual Studio 2008 but I followed it in VS2010 The follow-up article Lock Up Unlocked tells: "If you run it and ...
1
vote
2answers
52 views

While debugging, how can I ensure the output without stepping into each line of code?

In the following console application, if I place a breakpoint on the last line Go(); and execute till breakpoint (in debug mode) by pressing F5, the results are not quite different on each run. ...
0
votes
2answers
76 views

Why is the thread execution order in Debugging and Release modes different?

I am running the C# code below in Visual Studio 2010, Windows XP SP3. In "Start without debugging" (by Ctrl+F5 or from menu), the output: Hello from main Hello from worker "Start with ...

1 2 3 4 5 28