debugger

Visual Studio 2008 C++ debugger drops out of single-step mode under Vista

I have a fairly large C++ project, and am trying to use the debugger to step through some code. Unfortunately, it sometimes decides to drop out of that mode, and just execute the code without paying attention to the fact that I pressed F10, and not breaking at subsequent breakpoints. I don't know when it's going to drop out, but it see...

Visual Studio Express can't debug - "The debugger is not properly installed"

I have recently set up Visual Web Developer 2008 Express Edition on my laptop (running XP SP3) to develop some c# .net code for a website. All seemed to be working great, I can edit code and the website runs in IIS... The problem came when I hit F5 to debug. I get the following error message: "Unable to attach to application 'WebDev.We...

ANTLR “Cannot launch the debugger. Time-out waiting to connect to the remote parser.”

One of my ANTLR grammars running in AntlrWorks throws: “Cannot launch the debugger. Time-out waiting to connect to the remote parser.” In the past this message usxually goes away but this one is persistent. On searching the ANTLR lists (e.g. http://www.antlr.org/pipermail/antlr-interest/2009-June/034659.html) there are hints that the ...

Is there a Perl module that can automate ollydbg?

Is there a CPAN module that can automate the famous ollydbg debugger? If yes, could someone provide such module and some tutorials/documentaitons/example about it? ...

Print function calls with a variable delay / Python

The question is, how can I configure the Python debugger to show me in the console what functions are being called? In order not to see everything flash by, a delay between the function calls would be needed. ...

Perl AND IDA PRO

Could someone provide a good link of documenation/material/examples of IDAPERL (a plugin to add perl scripting and automation support to IDA PRO ) i see there are many documentation about python and idapro but for perl it seems nothing . or could someone suggest a perl cpan module that automate the IDA PRO Degguber (http://www.hex-rays.c...

Where do data files go so the Microsoft Visual C++ 2008 debugger can find them?

I am writing code that opens an istream object on a file specified by the user. I want to be able to run the program in the debugger and just type the filename (eg data.txt) at the prompt, not the whole path. I haven't worked out how to do this inside the IDE so I have been saving my .txt file to the debug folder and running the .exe fil...

How do I pass console input to a running Java program instead of to jdb?

Debugging my code with Java's jdb. Am stuck at a point where my program expects command-line input, but jdb intercepts it as a jdb command. How do I tell jdb to pass through text to the running program? Version: C:\Documents and Settings\*snip*>java -showversion java version "1.6.0_17" Java(TM) SE Runtime Environment (build 1.6.0_17-b...

How do I print an array in Java's jdb debugger?

How do I print out the values of the byte array all at once? I seem to recall I could specify a memory range in gdb. Is similar functionality is available in jdb? I have a Java byte array: byte [] decompressed = new byte[OUTPUT_FILE_IO_BUFFER_SIZE]; which I populate from a String: System.arraycopy(decompressedString.getBytes(), 0, d...

Method not being called in switch statement

Edit: Works perfectly in debugger now, but block doesn't rotate at all when run normally.. I'm having a problem that I've run through the debugger a ton and have narrowed it down to this. I've got a block on screen that comes down in the middle and rotates. The image of the block obviously changes depends on the rotation, and this is d...

How do I skip a breakpoint a set number of times in Java's jdb?

How do I skip a breakpoint a set number of times in jdb? jdb's help provides this hint: !! -- repeat last command <n> <command> -- repeat command n times # <command> -- discard (no-op) When I attempt to skip breakpoints n number of times however, like this: 80 cont or like this: 80...

Load a flash swf in debug mode

Hello I'm trying to debug a problem in a client side flash application (the swf) which communicates with a server side .asc. How do I get the client side flash to load in debug mode? I can get it into debug mode after it has loaded but I need to debug the loading of the flash. The application is a video conference app and it has a pro...

Which debuggers support step back/time machine/back-in-time feature?

If possible, describe platforms/languages/symbolic formats supported and if full support is provided (historical states back) or partially (only code can rerun with no rescue for states). Further information about performance or resources needed is welcome but optional. ...

Contents of PyString in Qt Creator debugger?

I've got a PyString* object that I would like to see the contents of. Is there any way to see the text of the PyString using Qt Creator's debugger? PyObject *import_str = PyString_InternFromString("__import__"); If it makes a difference, Qt Creator is a front end to GDB. ...

Visual Studio 2010 Debugger over-running IE

I recently got the beta IDE from Microsoft (Visual Studio 2010) but only got it for Visual Basic, but the Debugger keeps blocking me from downloading things like Adobe Flash Player, and won't allow me to run ActiveX add-ons (on Internet Explorer 8)... is there a way to turn off the debugger from running in IE8, or just all-together shut...

Flashdevelop haxe (flash) debugger

Is there any debugger for Flashdevelop haxe as3? ...

What's a free Perl IDE for Windows?

I am looking for a Windows Perl IDE with debugger like Komodo but free. I have seen Eclipse+EPIC but I don't want to install Eclipse here . Padre doesn't have debugger built in. ...

How to debug node.js applications

How do I debug a node.js server application? Right now I'm mostly using alert debugging with print statements like this: sys.puts(sys.inspect(someVariable)); There must be a better way to debug. I know that google Chrome has a command line debugger. Is this debugger available for node.js as well? ...

Gzip ASP.NET in debug mode

I've tried to setup compression (both dynamic and static) in IIS7 for my local system, but when start my ASP.NET site using the debugger, YSlow tells me that all of the files (aspx, js, css, etc.) are not compressed. Any ideas? I really want to test this before I make changes to the production server. ...

How to start a process and then pause it immediately?

Dear All, I would like to know if there is any command or tool that can be used to start a process and then pause it immediately. I need this function so that I can have time to attach a debugger to it. I have tried visual studio's /debugexe feature, but the behavior of the program seemed changed. So I need to find other way to attach i...