1
vote
1answer
42 views

What difference between _set_purecall_handler and _set_purecall_handler_m?

I debug a code, and I use _set_purecall_handler to set function that be called when pure call virtual function happened. This exemple from MSDN work nice for me and do what I want: code from msdn So, ...
0
votes
0answers
17 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 ...
1
vote
0answers
34 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 ...
7
votes
1answer
100 views

Detect if Debugger is Attached *and* stepping through

I am aware of the Debugger class within the System.Diagnostics namespace which has the IsAttached property. Is there a property, somewhere, that can augment this call and tell me if we're actually ...
0
votes
0answers
21 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
2answers
23 views

Debug FeatureActivated() in SharePoint WebForms

Is this possible? I am doing: Deploy -> Set Breakpoint in the public override void FeatureActivated -> Attach the process to the debugger -> refresh. Obviously this won't work because ...
0
votes
2answers
39 views

VC++ debugging mode: batch edit std::vector<int> value?

Now, in Debugging mode, I have a std::vector vec which contains 100 elements, I'm curious to know whether it's possible to edit these 100 elements at the same time, for instance, make all of them to ...
0
votes
3answers
33 views

VC++ debugging: is it possible to skip cursor?

As we all know, in debugging mode, Visual C++ support "Run to Cursor" feature, so, I'm curious to know whether it support simillar feature "Skip cursor". In other words, my app just skip the line of ...
1
vote
3answers
50 views

Stop visual studio from breaking on exception in Tasks

i have the following code: Task load = Task.Factory.StartNew(() => {//Some Stuff Which Throws an Exception}); try { load.Wait(); } catch (AggregateException ex) { ...
3
votes
2answers
59 views

third party library with anti-debug code

We are using a third party library for our program (desktop application written in c++), library is protected with anti-debug code, encryption/decryption layers, garbage code, triggered exceptions and ...
0
votes
1answer
21 views

how to tell which w3p process to attach in the debugger?

I have several apps hosted in IIS that are running at the same time. When I attach to a process in the Visual Studio debugger, I see several w3p processes. The only way I can tell which one to ...
0
votes
0answers
27 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
25 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
15 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 ...
0
votes
0answers
29 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 ...
3
votes
1answer
135 views

Can't see variable contents when debugging C++ code called from a managed app

I've got some native C DLLs which I'm calling from a Managed C++ Class library ("Rem"). In the "Rem" class library I've got one native C++ class (api) and one managed C++ class (API). The managed ...
1
vote
1answer
40 views

How to start running with MSVC

Starting from the beginning !! can anybody here help me how to start running C project with MSVC ? I have all the source files under: src/ directory all the header files under: inc/ directory ...
0
votes
0answers
40 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
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 ...
2
votes
1answer
56 views

Visual Studio - how to attach debugger to restarted application?

I have an application in C++ developed in VS2010. This application has an ability to restart itself when needed (some changes that requires it to reboot). Now there's some bug that occurs only under ...
0
votes
1answer
82 views

Visual Studio. How to build DLL (in commandline) that debugging works by attaching to process?

Visual Studio. How to build DLL (in commandline) that debugging works by attaching to process ? As far as I know, here's what I am doing. To build *.cpp files, I put these flags cl /Zi /Od To make ...
1
vote
0answers
184 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 ...
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
248 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
2answers
106 views

Can I step through the source of my IIS 7 deployed MVC app?

I'd like to step through the source code of my MVC application that I just deployed locally on an IIS 7 server. Is it possible? How?
1
vote
4answers
491 views

can not hit breakpoint inside of .js file

I upgraded to win 8. Now I run my VS 2012 under admin privileges and I'm creating a website in MVC 4. I checked different solutions online and none have worked. I have a javascript file in my solution ...
2
votes
1answer
303 views

StackTrace/StackFrame don't return expected info in a production environment

I use the following method in my ASP.NET web application to receive the stack trace for an exception: public static void getStackTraceInfo(System.Diagnostics.StackTrace trace) { for (int i = 0; i ...
2
votes
1answer
142 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 ...
2
votes
1answer
162 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
0answers
35 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 ...
3
votes
2answers
113 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
2answers
121 views

How can I debug a working directory *.aspx.cs file when running the main project in ASP.NET (using Visual Studio (2010))?

Okay, first things first, I don't usually develop ASP.NET applications and nor do I regularly use Visual Studio. I'm not entirely sure if the title to this question makes a whole lot of sense, so let ...
0
votes
0answers
83 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
0answers
321 views

Debugging Windows 8 App for surface pro tablet

I have released an app for windows 8, desktop users are happy with it but surface tablet users are complaining crash issues as soon as app starts. Now i dont have surface tablet to debug the app ...
0
votes
0answers
475 views

Break points are not hitting in the visual studio 2012 asp.net 4.0

I have upgraded my application from ASP.NET 2.0 to ASP.NET 4.0 ( also from VS 2005 to VS 2012). There is a strange problem I am facing during debugging my application. None of the breakpoints in my ...
0
votes
1answer
95 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 ...
1
vote
1answer
48 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
773 views

How do I stop Visual Studio from creating pdb debug folders?

I'm not sure what changed, but, within the directory where my solution is Visual Studio is creating debug folders. Here are some of the folders and files being created: ...
0
votes
1answer
53 views

Debug in the Orchestration and in the map

i have a map that does not work properly. I have mapped a field from a my brand new schema into a canonical schema, but the problem is that in the canonical there is a field that is not valorized (but ...
2
votes
1answer
373 views

phonegap windows phone, works android and ios but not windows?

I have a phonegap app that works in android and ios but when I port it over to windows phone it is not working. It loads up on the emulator just fine, it shows the page rendered and styled great but ...
0
votes
1answer
378 views

Why does my WP8 (C#/XAML) app remain “Loading..” forever?

What should I look at or step through to try to figure out why my WP8 app displays "Loading..." until the proverbial cows come home (and probably longer, actually). I let it run for a couple of hours ...
2
votes
3answers
79 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 ...
1
vote
1answer
67 views

Switch Live Debugging Session From VStudio (2010) to WinDbg

I suspect the answer is no, but maybe someone knows some magic. I find VStudio to be easier to use to step through c# code. However, when I encounter a crash in the (non-CLR) layers below the CLR ...
2
votes
0answers
105 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 ...
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
1answer
209 views

Exception when using C# wrapper with C API from Java application

I am trying to use C# code from a C API. The C API is actually available from a Java application. I have created a C++/CLI wrapper to call a simple C# function and have verified it works using a ...
1
vote
1answer
469 views

Visual Studio 2012 won't debug a library if it is also in the GAC

This is not related to the "just my code" debug setting, or marked Optimize Code, or not marked Debug code... all these situations had been ruled out. I have a .net project that uses a library. In ...
0
votes
2answers
119 views

Visual Studio C++ weird exception when calling CefBrowserHost::CreateBrowser

I am using CEF3 (chrome embedded framework) in my win32 application, while I am running the application I get a weird error message - I am coming from a C# development background, and here in C++ I ...
0
votes
1answer
288 views

debuging with visual studio using redirected standard input

I am debugging c++ console application with Visual studio. I exhausted of inserting the same input every time I debug this program. I would like to use the same input more times. I do this without ...

1 2 3 4