Tagged Questions
1
vote
1answer
22 views
SSIS - search or filter Execution Results in Debug Mode
I have a .dtsx package where I load huge number of flat files in thread-like loops.
In every loop, if there's something wrong with the file, the process copies the file to another location and ...
-1
votes
2answers
51 views
VS2008 C++ debugger seems unable/unwilling to look inside instances of structs defined within a function. How are people debugging such code?
VS2008 C++ debugger seems unable/unwilling to look inside instances of structs defined within a function when these instances (or references to) are declared in a different scope to the one where the ...
2
votes
1answer
37 views
How do I turn debugging in disassembly off permanently?
Whilst debugging a console app in c# and VS2008, disassembly window appears uninvited.
I am debugging my code line by line using F11. I have break points set and it starts off well then after a ...
0
votes
1answer
31 views
How to get debug information about Events
I have a program with the following design
A couple of separate classes, each implementing one type of
algorithm
A windows form interface for providing input to run
different algorithms AND Speech ...
1
vote
1answer
27 views
Strange behavior: Visual studio 2008 with SP1 step over when debugging will skip lots of statements
Windows 8 64 bit, Visual Studio 2008 SP1, the break point can be hit, but step over after several steps from the break point will suddenly "jump" to statements far after the current running statement.
...
0
votes
2answers
35 views
VS2008 on Windows 8 stepping through when debugging a web-app takes a long time
When I try to step through a web-app via F10 key in VS2008 running on Windows 8 Pro it takes about 3 seconds for each step through to complete.
On windows XP and windows 7 running VS2008 debugging ...
3
votes
2answers
33 views
C#: VS 2008 debugger executing property code
I have the following 2 lines of code:
lstvbWerteC.Clear ();
if (...)
lstvbWerteC is a field of List<T> with class scope. If in the VS 2008 debugger I set a breakpoint on the if statement I ...
0
votes
0answers
19 views
VS2008 starts new build when starting a debug session
I have several solution files correspondiong to the various projects I'm working on.
Our shop uses IncrediBuild to speed up build times.
For some projetcs when I press F5 to debug my software , it ...
0
votes
0answers
21 views
VS2008 debug dll(Built in Win7) not loading in WinXP?
I am having a strange problem.
The DLL which I had built in Win7 using VS2008 is not loading in WinXP.
Note : The DLL uses CLR/C++, targetted as .NET framework 2.0
In dependency walker, all the ...
0
votes
1answer
40 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 ...
0
votes
1answer
32 views
Enable first chance exceptions for specific piece of code
I need Visual Studio to throw first chance exceptions only for a specific class.
If i enable First Chance exception in Visual Studio, it enables for the entire solution.My solution is big and I do ...
0
votes
0answers
41 views
add new breakpoint when debugging with visual studio 2008 slow
I use visual studio 2008 to debug a native c++ program. When I press F9 to add new breakpoints, the IDE takes me 20 sec to wait it. While if I add a breakpoint at a place where use to be one, it is ...
0
votes
3answers
46 views
the debugging finish without completing the debug
I debug my code as usual , and put set of break points but i note that the debugging finish without completing the cycle !!
and this is happened in a dummy manner . How to fix this problem ?
0
votes
1answer
112 views
Visual Studio debug instance not showing form anymore
I have a project (from a SVN repository), which ran yesterday when I start a new debug instance. It'd show me a form and let me do some stuff on it. Today, I tried to run a new debug instance again ...
1
vote
1answer
255 views
Untraceable Exceptions in Windows.Forms Application.Run()
I have an old Windows.Forms Application that I am trying to debug.
Sometimes after running a few minutes it will produce an ArithmeticException or an OverflowException. The source must be somewhere ...
2
votes
3answers
56 views
Is there some debug tools to show the result in a flat table
I want to ask if there 's some debug tools to show the result in a flat table to facilitate finding any logical errors .
For Example ::
Now I want to see all these rows in a flat table instead of ...
0
votes
1answer
39 views
Debugging bad_alloc exception from .NET web application
I am converting a Visual C++ desktop application to a .NET web application. In doing so, I have tried to retain the backend Visual C++ dlls that were originally used in the desktop application. In an ...
2
votes
1answer
43 views
can we attach a process to VS programatically as soon as the process is created? [duplicate]
Possible Duplicate:
How to set breakpoint at the very beginning of program execution
I have an application in C. I am using VS 2008 for the development. I need to debug the C code by ...
1
vote
1answer
83 views
How to automatically log asserts using Visual Studio?
I am a newbie using Visual Studio 2008 and C++.
My task is to run an Automated System framework which runs a set of tests on the debug build of the application and logs all the asserts that comes in ...
1
vote
2answers
57 views
Visual Studio (2008) debugging stopped showing me where my exception occurred for C#
I used to get exceptions and the application would stop and the debugger would show where the exception happened. I've since added 'using System.Diagnostics' and a few debugging lines. Now, I just ...
0
votes
1answer
60 views
Print Debugging in Visual Studio?
I'm using Visual Studio 2008 to compile and debug a plugin for an application that runs under Windows.
The plugin has some problem and it crashes. I have been running VS in Debug mode but when the ...
0
votes
1answer
151 views
#ifdef _DEBUG release mode in vs 2008
There are some part of my project which don't function in release mode. I can check it by using printf and it doesn't print anything. I'll show you in this following code:
void ...
0
votes
0answers
54 views
Visual Studio debugger annoyance - Opening hidden/system files
I was just wondering if there is anyway to stop Visual Studio 2008 from showing all of the files like iostream or xiosbase during debugging with a breakpoint?
I'm finding it really annoying and time ...
0
votes
1answer
143 views
C++ DLL debugging
I have a DLL written in C++. It wraps a static library. I am calling it from python with ctypes. So far, so good. I need to debug some calls in the DLL. I can hit breakpoints in the static library, ...
0
votes
0answers
104 views
visual studio breaking point condition: trigger break when something returns false. Is it possible
I have a function body that contains many other functions calls that may in some moment of time returns false. It is very boring to place each breakpoint at the row, because the points are so many ...
2
votes
0answers
46 views
Debugger does not free memory after detaching from a big application on Windows CE 6.0
We have a couple of devices running CE 6 from different vendors. When I attach VS2008SP1 debugger to our (rather huge) application, it takes all the RAM on device. When I detach, memory on device is ...
0
votes
0answers
36 views
Visual Studio 2008 Release Hell [duplicate]
Possible Duplicate:
visual studio 2008 solution release version runtime fatal error
I have a Visual Studio 2008 solution which works fine in debug mode, but fails in release mode. I found ...
0
votes
1answer
136 views
visual studio 2008 solution release version runtime fatal error
I have a Visual Studio 2008 solution which consists of some projects and uses dll's with theirs' headers. In the debug version it (the solution) works really well. And in release version it compiles ...
0
votes
0answers
73 views
Optimizing debugging JNI application
I have a JNI application, which I invoke using command prompt. Which creates a process and opens a port to listen (say 8889). Then I debug using :
Attach javaw.exe in visual studio
attaching eclipse ...
2
votes
2answers
132 views
Why the Web site project does not have release mode in config?
I'm currently working in the web site project.I want to build project in release mode, that unfortunately saw visual studio does not have release mode for build and only have debug mode.
in web ...
0
votes
0answers
24 views
Attaching to a remote process
I have an application running on a new remote server. I have added the remote debugging to the new server. Now on my local, I go to Debug > Attach to Process, but how do I find out which IIS process ...
0
votes
0answers
12 views
vs2008 directory finder in debug
Couldn't find this issue and not sure if it can be sorted but...
When i debug in VS2008, it goes to firefox, but doesn't show some of my css and images as they have the "/" before the directory path ...
2
votes
1answer
134 views
Visual Studio 2008 debugging visualizing matrix
I am building a complex mathemathical software and I have to see while debugging some 500x700 matrixes that are created. Also the matrixes are not filled in order, meaning that "randomly" they are ...
1
vote
1answer
360 views
VS2010 : MSVSMON.exe failed to start
i convert a vs 2008 windows application to vs 2010 but when i am debug that project it builds successfully but it is not debugging.
this is the error message.
0
votes
1answer
84 views
Using unset member variables within a class or struct
It's pretty nice to catch some really obvious errors when using unset local variables or when accessing a class or struct's members directly prior to initializing them. In visual studio 2008 you get ...
0
votes
1answer
38 views
parseInt acting strangely - possibly
I have simple little js function that is called by a custom validator for a textbox, basically to check if a time falls outside of a particular range.. the format of the time is 'hh:mm'
the ranges are ...
3
votes
1answer
230 views
“Asynchronous Processing=true” and Quickwatch / Watch Issues in VS.Net 2008
I've recently run into an issue when attempting to inspect property values using either Quickwatch or Watch in VS.Net 2008. After some investigation, it transpires that having "Asynchronous ...
0
votes
1answer
84 views
stack debugging in VS2008
I am doing some editings with an original source code in OpenCV package to do my tasks. There have been some other compilation errors after my modification. But I've already fixed them. Here comes the ...
0
votes
1answer
107 views
CE Device platform SDK not showing up in VS2008
So I've installed VS2010 express for desktop development, then VS2008 for mobile development (I'm developing for a Honeywell Dolphin 6100), then the platform and device SDKs for the Honeywell stuff.
...
0
votes
0answers
56 views
Visual Studio 2008, debugging and objects private variable changes value
I'm debugging a class and have a peculiar problem, and not sure how to solve it.
I instantiate the class like this:
10: Dim myObj as Obj = new Obj()
Now if the class definition looks like this ...
0
votes
1answer
71 views
VS2008 Debugger not displaying map data
I have a class that contains various datatypes using maps. The class functions correctly, in debug and release mode. However, when I attempt to debug my program, the debugger can not determine what ...
5
votes
2answers
164 views
Will debugging change the behavior of a multi-thread C++ program?
I am working on a multi-threaded C++ program which deals with a lot of synchronization issues. I am using Visual Studio 2008.
The run-time behavior of my program (the order in which statements are ...
0
votes
2answers
74 views
Visual Studio 2008 Projects and Debug
I'm not a regular Visual Studio user...
I wanted to make some changes to an existing VS 2008 project that I have.
I copied the project to a new folder.
I seem to be able to update the code in the ...
1
vote
1answer
49 views
Can I Label breakpoints in Visual Studio 2008?
Is there a way to name(label) breakpoints in MS VS 2008?
I know 2010 has that feature but, I am still stuck with 2008 at work as I am not sure what would the overhead be to go from 2008 to 2010.
...
0
votes
1answer
116 views
Why do I see “??” in Visual Studio Memory window after HeapFree?
I am debuging with Visual Studio 2008. I allocate a large buffer (around 12MB) using
buf = new unsigned char[bigValue];
Later when I deallocate the buffer using delete[] buf;, I see "?? ?? ?? ??" ...
0
votes
1answer
30 views
Breakpoints moving to another class
My break-points are having a strange behavior.
When I set one in a dialog function while my software is running, the break-point moves directly to the same function but in another dialog class.
For ...
-1
votes
2answers
72 views
VS2008 debug, console opens then closes imediately
I have tried numerous approaches to stop the console from closing - breakpoints, pause and listener functions, sample code, and requests for help on another forum; still no solution. except, if I use ...
0
votes
1answer
290 views
Visual Studio - PDB files
Which .PDB file does Visual Studio use if you use the "attach to process" facility? I followed these steps:
Created a simple VB.NET project
Opened the source code in Visual Studio and clicked build
...
0
votes
0answers
72 views
Visual studio 2008 debugging issues
Every time I try to debug my code I get the error message
The program '[2840] link.exe: Native' has exited with code 1171 (0x493).
The code has an error in it, but I can't fix it without a ...
3
votes
1answer
150 views
Visual studio debugger still shows old removed pages from iframes
I use modal dialogs. A modal dialog is build up with a mask div, and a container div. The container div contains an iFrame with the modal aspx page. When the modal dialog is initialized, the mask and ...
