Skip to main content
Filter by
Sorted by
Tagged with
2136 votes
117 answers
1.9m views

A C# desktop application (on the Visual Studio Express edition) worked, but then it didn't work 5 seconds later. I tried the following: Ensure debug configuration, debug flag, and full debug ...
284 votes
6 answers
228k views

I am running an application through gdb and I want to set a breakpoint for any time a specific variable is accessed / changed. Is there a good method for doing this? I would also be interested in ...
TJ Seabrooks's user avatar
  • 20.8k
772 votes
13 answers
327k views

I want to force the Chrome debugger to break on a line via code, or else using some sort of comment tag such as something like console.break().
Paul's user avatar
  • 9,455
93 votes
3 answers
100k views

I have a multithreaded app that is very stable on all my test machines and seems to be stable for almost every one of my users (based on no complaints of crashes). The app crashes frequently for one ...
Dennis's user avatar
  • 1,345
152 votes
5 answers
31k views

Is there any way to set breakpoint on setter/getter in auto-implemented property? int Counter { get; set; } Other than changing it to standard property (I'm doing it in this way, but to do that I ...
Marek Kwiendacz's user avatar
159 votes
14 answers
136k views

Is there an easy way to set conditional breakpoints in Visual Studio? If I want to hit a breakpoint only when the value of a variable becomes something, how can I do it?
MrClan's user avatar
  • 6,850
182 votes
11 answers
440k views

On the Bootstrap 3 media queries documentation it says: We use the following media queries in our Less files to create the key breakpoints in our grid system. Extra small devices (phones, less ...
Kris Hunt's user avatar
  • 2,250
53 votes
3 answers
40k views

Similar to other questions here, like this one. Is there a way to break on the change of a variable value in any JavaScript debugger? (like IE Developer tools, Visual Studio, or Firebug)? I guess it'...
user420667's user avatar
  • 6,770
244 votes
14 answers
187k views

Is there a way to place a watch on variable and only have Visual Studio break when that value changes? It would make it so much easier to find tricky state issues. Can this be done? Breakpoint ...
FlySwat's user avatar
  • 176k
182 votes
24 answers
97k views

I just upgraded from Visual Studio 2013 to 2015 and now I am having trouble with breakpoints. It's a hit or a miss where break points will actually work and if I set one while debugging I get the ...
Sealer_05's user avatar
  • 5,616
35 votes
6 answers
9k views

I am debugging C++ in gdb 7.1 on Linux. I have a function a() that is called in many places in the code. I want to set a breakpoint in it, but only if it was called from b(). Is there any way to do ...
Nathan Fellman's user avatar
82 votes
5 answers
35k views

I've got a small project which, when run in the Eclipse debugger, always seems to stop in FileInputStream.class line 106, where files are opened. There are no breakpoints set, but Eclipse behaves ...
skiphoppy's user avatar
  • 104k
47 votes
1 answer
43k views

I'd like to predefine some breakpoints in a gdb script and to invoke some special commands at these breakpoints and afterwards to automatically continue the program execution. So, ideally, I'd like to ...
Lord Bo's user avatar
  • 3,388
226 votes
12 answers
35k views

Visual Studio remembers breakpoints from previous debugging sessions, which is awesome. However, when I'm debugging, and I clear one of these "old" breakpoints by clicking on it, it's only ...
dan's user avatar
  • 9,872
61 votes
7 answers
56k views

I'm getting a NullPointerException in a Class from a 3rd party library. Now I'd like to debug the whole thing and I would need to know from which object the class is held. But it seems to me that I ...
boutta's user avatar
  • 24.7k
46 votes
3 answers
101k views

CSS newby here... I'm looking at a responsive framework and imagining how I would accomplish different tasks. Based on the size of the screen, they have classes added to the body tag such as: ....
FatFingers's user avatar
  • 6,917
38 votes
17 answers
63k views

I am working on an SSIS package. The package has a script (C# language) task. I need to debug the script task. I set the break point. The script in script editor (Visual Studio) and the task in SSIS ...
HappyTown's user avatar
  • 6,634
28 votes
5 answers
17k views

Is it possible to break javascript execution in browser developer tools always when a cookie is set (without setting JS breakpoints explicitly)? document.cookie = '...';
haba713's user avatar
  • 2,717
91 votes
6 answers
43k views

Today I ran into a problem were I needed to remote-debug a program. The program was launched from another system, so I really don't have an opportunity to interact with it on the command line. I ...
Clinton Pierce's user avatar
158 votes
11 answers
60k views

OK, info break lists the breakpoints, but not in a format that would work well with reusing them using the --command as in this question. Does GDB have a method for dumping them into a file acceptable ...
casualcoder's user avatar
  • 5,080
57 votes
8 answers
72k views

I am using Visual Studio 2010, and I know this feature is available in C++. I need to debug some code, that changes a variable to several values. I want to debug the code in a specific case, when the ...
Delashmate's user avatar
  • 2,434
23 votes
5 answers
13k views

Regardless of other options that may achieve the same result (i.e. adding breakpoints by hand), is it possible to programmatically add a breakpoint into the source code of a Visual Studio project? ...
DevinB's user avatar
  • 8,344
20 votes
1 answer
6k views

Everytime I try to access this website and open google-chrome-devtools I am unable to inspect any of the elements through the Inspector as the UI is having an overlay along with a message Paused in ...
undetected Selenium's user avatar
15 votes
7 answers
56k views

Is it possible to actually use the Xcode debugger when running an iPhone app on the device rather than the simulator? i.e., can I have the device stop at breakpoints that I set in my code and step ...
CIFilter's user avatar
  • 8,666
8 votes
6 answers
9k views

I have Xdebug 2.1 installed, and running with PHP 5.2.13. It can successfully connect to multiple DBGP clients (i.e. the xdebug.remote_log shows communication back and forth, and the clients ...
mjs's user avatar
  • 65.5k

1
2 3 4 5
10