I would like to step through Ruby code at runtime, but it seems difficult to find a decent Ruby IDE for OS X which allows you to do this. I would prefer one which uses the native look and feel of the OS (Cocoa).
Can anyone make a suggestion?
The main feature I am looking for is the ability to step through the code, not really much else...
I was debugging a C++ program in VS 2003, and a boost variable showed up as having the value {null=???}. What does that mean?
...
In accordance with the steps from MSDN,
I can debug .net framework source code,But I can not debug step in Linq to SQL code,anyone help me!
Thanks.
...
I've been looking for a Microsoft document from the 1990's called CodeView Symbolic Debug Information Specification. It's referenced by Microsoft in their PE/COFF spec. Information about this document is sparse, and every lead I come across ends in a 404. Unfortunately I don't have any old MSDN CD's, which seemed to end the search for a ...
Is there a way to view C code "live", by displaying the current current line, as it is being executed?
You can pretty close by using GDB, but I'm wondering if there is something slightly more elegant than holding the return key down:
$ gdb ./mycode
(gdb) break 1
Breakpoint 1 at 0x100000f08: file mycode.c, line 1.
(gdb) run
Starting pro...
Hi i was wondering if there is away to allow tracing / diagnostics on a SQLConnection via the app.config file much like you can with WCF when you need tracing support (as below)?
<system.diagnostics>
<switches>
<add name="DataMessagesSwitch" value="0" />
<add name="TraceLevelSwitch" value="0" />
</switches>
</system.di...
We are planning to use SOAP UI Pro to test our Services (developed in c#.net)
I am getting an error in the service and would like to debug the service call.
I am not able to attach a breakpoint.
Does anyone have tried to debug SOAP UI test tool call?
...
Have Exception thrown in my app.
In callstack I can see program stops at property's getter: FullName.get()
I'm trying to find out what part of code is generating exception.
But in call stack I can see only 3 entries:
3) FullName.get()
2) [External Code]
1) myApplication.exe
Is is a way to debug external code somehow ?
...
If I start running my asp.net WebForms app from the VS2008 IDE in debug mode, is there a way I can tell it to then quit the debugging but keep on running? Often times, I start in debug mode, then after I'm done with the debugging, I want it to keep on running, but to come out of debug mode.
...
I have a multi threaded application. It also uses some unmanaged code, an ODBC driver. If I am in a specific thread, sometimes I hit step over, F10, however it doesn't stop on the next line, the program runs as though I have hit F5 to continue. Any ideas why this is?
Update 1
When I say the program runs, I mean the thread I am in. I ha...
Hello,
I gather some experience with the trial version of delphi 2010.
I am looking for a simple debug visualizer, because the sample
debug visualizers are not part of the trail. I do a lot with the
new rtti type TValue and TValue.ToString can't be call from the
debugger (results in an exception), so my idea is to write a
debug vis...
I have Qt project with multiple children projects, most of them are dll's. And exactly one is Qt application.
How to launch debugging of application? Can it be done in some config file to allow other users of versioning system to use same settings all over the team.
Of course I know the way to "attach" to already existing process. But s...
Can anyone explain why the following is happening:
When we serialize a file in debug mode, we can open it again in debug mode, but not at runtime.
When we serialize a file in runtime mode, we can open it again in runtime mode, but not at debug mode.
Now I know you're gonna say: thats because they have different assemblies.
But we use a...
I've inherited some rather large static HTML files that need to be fixed up to work in webkit-based browsers, Safari in particular. One of the common bugs I've found that cause rendering differences is missing </div> tags. (Both IE7+ and FF3+ seem to ignore these, or make good guesses as to where to close the DIVs, and render as expected...
Whilst debugging in Xcode_3.1.2 I am pretty sure I could see the contents of my NSString arrays. However after upgrading to 3.2 I only see the following ...
I know I can print the object in (gdb) using "po planetArray" or simply click in the debugger and "print description to console" I am just curious, as I am sure it worked prior to...
Hi!
I've found information about this feature on SO some time ago, but the topic was a duplicate of Hidden Features of Visual Studio (2005-2008)? and I can't find it anymore.
I want to use something like this:
#ifdef DEBUG
#define break_here(condition) if (condition) ... // don't remember, what must be here
#else
#define break_here(co...
We are trying to debug through a Sql Server CE issue on a Windows 7 Enterprise RTM (64-bit) desktop running the .Net Framework 3.5, SP1. The application is crashing consistently and we are trying to set up .Net Framework debugging for Visual Studio 2008, SP1. Using the scattered resoures around the internet, we set the options:
Symbol...
I'm a relatively new employee at my current company, so I'm still "drinking from the fire hose" in terms of learning my way around the software and architecture. I've found myself dealing with some very large objects while writing unit tests, let's say for discussion a "SavedOrder", and I need to find where to find a particular piece of ...
Hi all
My OS is 64bit Server 2008, 64bit SharePoint2007 SP2, Visual Studio 2008 SP1.
I write a web part and deploy it to the server, it works fine, but I still want to debug it. I find the w3wp.exe's process ID(port 80), then I attach it to the Visual Studio as I do on the server 2003, but it seems do not work. But I make some breakpoi...
Using VS2008..To start debugging depending on my mood i'll either attach to process and hit break points that way or i'll place System.Diagnostics.Debugger.Break() in a relevant place in the code and start debugging when it breaks at that point.
The latter being necessary sometimes I find!
Not talking about F5 --> running in debug mode...