|
Is debugging JavaScript as easy as debugging a C++/C#/Java application (given the best IDE available), or are the current tools much more limited and less user friendly, making debugging a headache?
Started by Dimitri C. on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
I think programming and debugging JavaScript is the most terrible thing in the world, eventhough they have all when there were no tools to help....
Is it as "easy" as Java, C#, etc.
Visual Studio, it makes it pretty easy to debug javascript.
|
|
Hi,
I am using Xcode in order to debug C++ programs. The main problem for me is that it takes around 10 munutes till the program gets to the point of the program that I need to debug. Then I realize about something inspecting the variables and some other...
Started by asdf on
, 4 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
GDB has "backwards debugging" (or more correctly "Reverse Debugging") for a limited number.
|
|
I have a vb project which calls functions in a dll. The dll is created in a separate vs project (portaudio), which is written in c.
The dll c project compiles clean and builds the required dll, which I am currently dropping in c:\windows\system to vb ...
Started by WaveyDavey on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
How do you calls C dll from VB their dependencies and ensure ... .
Also make Reference..' dialog -> Project and build them all in debug mode.
Properties, in the Debug tab make sure that "Enable unmanaged code debugging" is checked.
|
Ask your Facebook Friends
|
I'm looking for details on the DEBUG HTTP verb.
It's clear to me that this is used for remote debugging - though I'm not even sure if it's for IIS or ASP.NET...
If I want to access this interface directly - i.e. not through Visual Studio, but sending ...
Started by AviD on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
More specifically HTTP/1.0 Accept: */ * Host: www.example.com Command: stop-debug
Depending on whether debuggingIf you want to do remote debugging....
The DEBUG verb is used to start/stop remote debugging sessions.
Process to attach.
|
|
I am debugging and I hit my break point. I hover over a variable and I get the standard drilldown. I see a Nullable prop and it is null. I right click and choose "edit value". No matter what I seem to type, I get "The value could not be set. Please check...
Started by Kettenbach on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I had this line:
DateTime dt = DateTime.Parse("01/01/2000");
Hit the breakpoint, and typed this into the immediate window:
dt = DateTime.Parse("02/01/2010")
The same technique also works when editing the value in... .
Try using #5/1/2009#
Seems easy to me.
|
|
I plan on using GCC more (Linux and Windows) and I was wondering if there's an equivalent of the MSVC debug heap and the STL checks available for the GCC CRT and STL.
I already know about tools such as Valgrind, but I'm looking for something built in ...
Started by rpg on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I've never used them, but I do know glibc has some ... .
The STLport version of the standard library at http://sourceforge.net/projects/stlport/ has a debug about GCC STL debugging here , but I once again I can't vouch for the info it gives.
|
|
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...
Started by MattSlay on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
There is an option in the Debug menu....
When done debugging, Debug -> Detach from processYou can go to Debug > Detach All in the menu in VS2008 (Express edition, at least).
Set breakpoints, debug.
And click Attach.
|
|
I have an executable that remained from a previous programmer ( and no source code is available ). The thing is, it started to work kind of buggy and I'm trying to figure out why. The tool reads data from somewhere and populates a combobox with it. Is...
Started by Geo on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Attempting to debug the program, to check what system calls does the binary use, and try to find were from that build, then you can debug the release with function names visible just by loading the exe.
|
|
I found Windbg is very useful during development and debugging. but mostly i use windbg in use mode debugging.
What kernel debugging can do in windbg? or When should I use windbg's kernel debugging?
Is there a toturial about kernel debugging in windbg...
Started by whunmr on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It's more complicated to debug in kernel mode, among other things for a live kernel debug session you ....
You usually use kernel debugging when you need to debug low level device drivers interacting directly with the hardware.
|
|
Looking for tools for debugging n3. Are we stuck with using XML just because of easier debugging?
Started by brinxmat on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There is an Emacs N3 mode....
You can always just run a n3 parser and look at the errors, but in your short question (shorter than this answer) it is hard to suggest anything very specific .
Tools" is a rather large area from IDEs, editors, command line.. .
|