1
vote
1answer
15 views

Installing Debugger in Qt when no default debugger is found

I am new to Qt.How can I add debugger of VS2010 in my Qt 5.0.2, since it is not detecting any debugger automatically? Or can any one name debugger tool used in vs 2010?I searched for "Debugger for ...
0
votes
0answers
18 views

What methods are there you inspect extremely large arrays in visual studio?

I am trying to debug code that works with byte arrays of extremely large sizes (7 million or so bytes), but the built in functionality of VS is insufficient, Array Visualizer cannot handle such sizes, ...
1
vote
1answer
20 views

Debugging Classic ASP Windows 8/IIS 8 VS2010/VS2012

Moved over to Win8 to do Metro development, but need to support some Classic ASP code. On windows 7/IIS6 could debug the Classic ASP code with VS2008/2010, no problems. First time trying it on ...
0
votes
0answers
49 views

visual studio debug error unable to start program no more files

System info: Win 7 x64 SP 1, IE 10, Visual Studio 2010 I've been researching this error all over. visual studio debug error: "unable to start program (File path) no more files" This started with ...
0
votes
2answers
31 views

Qt+VS2010 - Unresolvable external symbol LNK2001

All I have is a main.cpp: #include "myclass.h" #include <QApplication> #include <QTextEdit> #include <QtGui> class Notepad : public QWidget { Q_OBJECT public: ...
0
votes
0answers
26 views

need further explanation of “no symbols have been loaded” error

I have seen the posts on this site about the following error: The breakpoint will not currently be hit. No symbols have been loaded for this document. But, the problem descriptions and solutions ...
1
vote
1answer
28 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
2answers
21 views

visual studio 2010 Symbols aren't loading for debugging

I am working on Sharepoint 2010 projects in Visual Studio 2010 and i am trying to attach to the w3wp.exe process. I attach fine and a few of my assemblies show up in the Modules pane, but the main ...
2
votes
0answers
43 views

Attach a second process to VS2010 programmatically with .NET

I have a solution in visual studio 2010 that contains 2 projects, one is a C# console application, which I will refer to as Foo, and the other is a CLR C++ console application, which I will refer to ...
0
votes
1answer
29 views

Way to track all funtions in Visual Studio / Nice debugger for VS

1)There is call stack provided in VS but isn't always show the sequence of functions called by user's code.It just shows functions from windows & directly the function you put break point on & ...
0
votes
1answer
52 views

Managed Debugging Assistant(MDA) jitCompilationStart usage

I'm trying to optimize cold startup time of some WinForms application.I've NGen'ed all assemblies but still see that JIT is invoked. I've enabled MDA's jitCompilationStart and see runtime exceptions ...
0
votes
0answers
11 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
76 views

Why won't my C++/Win32 project work outside of Visual Studio?

I have a rather large project I'm working on in C++/Win32, and now that I'm nearing completion, I wanted to start testing it on other machines. My project works great in Visual Studio - either in ...
1
vote
0answers
42 views

How Can I turn off this tab toggle in Visual Studio 2010

I am using MS Productivity Power Tools extension and have my tabs aligned vertically. I like to pin the files I am working more frequently, so they are at the top. However, recently when I debug my ...
0
votes
1answer
51 views

Running program from debug folder doesn't read input from file while on compile with VS2010 in runs properly

So i have a program which reads the input out of a specific .txt file. The code is: void Image::get_image_dimensions(char *fname) { // determine the number of entries in image ifstream fin(fname); ...
0
votes
1answer
39 views

How to set a breakpoint in a specific method of a specific object?

I have a nasty bug in my C++ project. There's a class class SomeClass { ... std::string *someString; ... } Here's a constructor SomeClass(...) { ... someString = new ...
1
vote
1answer
48 views

How do I know what errors are being thrown in my try-catch blocks?

When I'm building my programs, I have a number of try-catch blocks and when they throw errors, I seem to have trouble seeing what caused the error - I've tried looking at the stack-trace but I always ...
0
votes
0answers
40 views

Is it possible to remote debug Windows 8 with VS 2010?

I am using VS 2010 and trying to remote debug a Window 8 machine. I can't find a VS 2010 remote debugger stub compatible with Window 8. Is it possible to remote debug Window 8 with VS 2010 or must I ...
1
vote
1answer
52 views

Can't debug JScript anymore because of an attached debugger (which is not attached!)

Context: Windows Server 2008 R2 SP1, 64bit processor, VS2010 Using the //X technique for script debugging, and debugging JScript, I'm getting Unable to attach to the crashing process. A debugger ...
0
votes
1answer
98 views

Why is my program going into both an if statement AND its corresponding else statement?

In part of my program, I have the code: if(cameraName == L"AVT Prosilica GT2750") { mCamera = new camera_avtcam_ex_t(); } else if(cameraName == L"QImaging Retiga ...
0
votes
1answer
15 views

Visual studio debugging mode:how to go to the location of the next statement to be executed?

this should be simple but I googled it and I cant find any information. When debugging in Visual Studio, how can I move to the location of the arrow that points to the next statement to be executed? ...
1
vote
1answer
31 views

VC++ 2010 ignoring breakpoints

Last Friday before I went home for the weekend, breakpoints in my code were working fine. Today, they are not working fine. Since last Friday, I Rebooted my computer Downloaded new source code ...
0
votes
1answer
24 views

How to step into a TargetInvocationException?

Im getting TargetInvocationExceptions like An unhandled exception of type System.Reflection.TargetInvocationException occurred in mscorlib.dll Additional information: Exception has been thrown ...
0
votes
2answers
61 views

How to step into function of a dll when you have the .pdb file and the C++ source code with VS2010?

I am trying to debug a dynamic library I have wrote used by an application inside Visual Studio 2010. I can step into until a function of my dll, but I can't step into deeper and see the source code. ...
0
votes
0answers
40 views

How to debug x64 with Visual Studio?

I'm trying to create my first Silverlight application. It seems that it can't be debugged because Visual Studio 2010 uses the x86 'Remote Debugger'. It that I also have the x64 bit version installed ...
0
votes
0answers
37 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
101 views

Visual Studio Just-In-Time Debugger, stops Wamp Server

Please can someone help me, am getting this message whenever I start my windows 7 system: Visual Studio Just-In-Time Debugger. An unhandled exception ('System.IO.FileNotFoundException') occured in ...
0
votes
0answers
45 views

Windbg remote debugging a user mode dll

I have a usermode dll that's loaded from a kernel driver that I want to debug on machine B. The symbols are on machine A, which is connected to machine B via 1394. What's the best way to go about ...
0
votes
1answer
75 views

Visual Studio - launch .bat file as startup project

I have a C++ program I'm trying to debug. I normally run this from a .bat file which does some file cleanup before running the program. I can run my program from this script and attach the debugger, ...
0
votes
3answers
64 views

Track events in Visual Studio

I have a Visual Studio WPF C# Solution that has hundreds of classes and projects that I need to maintain. I want to track down a problem in the software but have NO CLUE where the class is in the ...
0
votes
0answers
26 views

Slow VS2010 remote debug

I got a 1mbit - 1,5mbit (just measured by iperf) VPN connection to server, have installed remote monitor to server. Everything runs good but slow. Tried to close unsed debug windows to minimize debug ...
0
votes
0answers
23 views

How to Debug IE PlugIn in VS 2010

I have IE Browser plugin for a Web Portal.Now I need to fix some defects,I wanted know how can I debug it.How to attach it to process and debug it in VS2010.The PlugIn(DLL) is built using COM\ATL.Any ...
1
vote
1answer
47 views

Crash when linking Debug-CRT in static/dynamic library mixture?

I have a strange problem where I suffer from crashes when deleting objects in my code. The objects are valid, there are no memory leaks that could overwrite them and it happens only in debug mode. The ...
0
votes
1answer
55 views

Random CLR Exceptions while Debugging in VS2012

I keep getting random CLR exceptions while debugging which then causes the debugger to stop. It happens on my asp.net project and a blank asp.net project i created. Below is the error. Any ideas why? ...
0
votes
2answers
91 views

Unable to load release DLL specified in AppInit_DLLs on Windows 7

We hook a library (say xyz.dll) through HKLM\Software\Microsoft\WindowsNT\CurrentVersion\Windows\AppInit_DLLS path. I need to debug this library so I created nondebug dll(&pdb) and replaced it ...
1
vote
1answer
51 views

#if DEBUG doesn't seem to work in my VS 2010

I've been doing the following in my C# code: #if DEBUG //Debugger only code #endif But for some reason when I do the same in my C# console application (that is built as a Windows service in VS ...
0
votes
0answers
41 views

Visual Studio 2012 missing 2 files from the debug folder using templates

I am working out of the "Beginning Game Programming Third Edition" for classes and am in chapter 6. He suggests to use the template from within the included folder moving forward for the projects. ...
2
votes
0answers
38 views

no symbols loaded after visualSVN

I have a project in vs2010 ,mvc web site c#. I used to put break points and run the project and the code break on that breakpoints. yesterday I added the project to visualSVN, since then I get error ...
1
vote
1answer
26 views

Winform not visible while debuging

I have an application that manipulates with some files in certain matter and have progressbar and textbox. When I debug (VS2010), the app window is not visible, but the app does all the work that it ...
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 ...
0
votes
3answers
51 views

Breakpoints does not point to the actual code

Does anyone have a clue what could cause a breakpoint not to show the actual place of the code in a specific file? This is the second time this has happened to me.. maybe someone could help, my ...
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
0answers
66 views

Visual Studio 2010 output window selective trace output

I'm trying to debug my application but some of the assemblies my code refers to produce too much of trace messages which flood the output window. This way the messages I have placed in my code get ...
-1
votes
1answer
16 views

Trailing breakpoints in VS 2010?

Does anyone know if there is a way or plugin that allows you to create a trailing breakpoint while debugging. For example I want to set a breakpoint on some class and then as I step to the next line ...
0
votes
0answers
102 views

Site stops responding while debugging a Sharepoint WorkFlow

Since two days, I am unable to debug a SharePoint Workflow. As soon as I add a new item to the list attached to the workflow, the site does not respond anymore. If I open a new browser page to the ...
0
votes
1answer
89 views

Error in visual studio 2012 (They were build errer)

I'm new at Visual studio 2010 When I hit "start debugging(F5)" obviously it says: "would you like to build it?" then I push yes button and it is says:"There were build error. Would you like to ...
0
votes
0answers
52 views

No visual studio 2010 debug output after application close

I have enabled direct3d debugging and visual leak detector for my application. When I run it the output window shows render state warnings in directx and it shows that vld is running as well. I dont ...
0
votes
1answer
76 views

C# scope and visual studio debug

While debugging C# code with VS2010 I test curious behavior that i cannot explain. With the very simplified code below : public void Go() { var test = new Random().Next(10) % 2 == 0; // ...
0
votes
3answers
112 views

Tools for c++ multiplatform projects

I am working with a c++ multi-platform project using visual studio 2010, there is a shared portion of code among all platforms, but there is a big portion that is dedicated to each one, I separate ...
1
vote
0answers
71 views

Internet Explorer 8 freezes on debug with Visual Studio 2010

I have an ASP.NET web application that I've been working on for the past few months. Recently I've encountered a problem where when I start debugging and internet explorer launches it locks up. I've ...

1 2 3 4 5 21