Recently two of our clients have reported problems with our applets. Looking at the java plugin console it is full of ClassNotFoundException so none of our code is executed.
I've been able to reproduce the stack trace using a virtual pc image with 0 free space on disk, but the problem goes away as I restore some disk space, and the user...
Using VS .NET 2003. Would like to run the .exe from outside the IDE (i.e. command prompt or double clicking .exe icon in windows) However, still want break points to hit in the IDE.
How do I set this up?
(Running from outside IDE but IDE seeing it as run from "Debug" -> "Start")
Thanks.
...
Hi all,
My understanding is that Microsoft Script Editor is the best debugging utility for IE. To enable debugging in IE6 on XP, I found these instructions:
On Windows XP SP2+, the option has been split to two:
Go to Tools->Internet
Options…->Advanced->Disable Script
Debugging (Internet Explorer)
Go to
Tools->...
When I run/debug my project the code completion doesn't work. Is it possible to use code completion during debug/run?
...
I have implemented a custom trace listener (derived from TextWriteTraceListener) and now I would like to set my application to use it instead of standard TextWriteTraceListener.
First I added default TextWriteTraceListener in order to make sure it works ok and it does. Here's my app.config:
<configuration>
<system.diagnostics>
...
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 the libraries.
...
Hello all,
I am trying to update a field in a table by increasing its integer value by 1. Here is what I am using:
function updateViews($id){
$sql = "UPDATE tweets SET tweet_views = tweet_views + 1 WHERE tweet_key = '$id'";
$result = mysql_query($sql) or die("DB Error : ". mysql_error());
return $result;
}
However, I find its inc...
I have some legacy Web Services written in C# ASP.NET. There is a specific object in a library used by the Web Service that I need to inspect. Setting a breakpoint in the web service doesn't do anything.
This is made harder by the fact that the code is so horrendous that the entry point to the Web Service callout is not obvious.
...
I'm making an edit button which pops up a modal box with a form to edit it. jQuery then sends this form to my server and I get a JSON response back. However, due to my bubbling issue, if I click on, for example, all of the edit buttons and then click on the last one and change a field, it does it across all of them.
$('.edit').click(fun...
I'm attempting to debug an ASP.NET application. It's particularly difficult as the bug only occurs in the released code deployed to production. It cannot be reproduced in the development or test environments.
I'd like to investigate further by creating a dump file at a particular line in the code where the problem is happening. However ...
I'm writing an extension for Firefox, and I need to log some data to Firebug's console. Within the scope of my addon, "console" is undefined, and "window.content.console" is also undefined. So how do I log to the console?
...
Hi all
I'm having a hell of a time with our build scripts right now: I'm using Waf to drive our build process, and everything works great, except on Windows, where I am getting intermitent errors during builds.
The errors are always basically "access denied" errors of one form or another, relating to temporary files I have created duri...
I currently have my project running two separate threads (one for MFC operations, like views/formviews, application window, etc., and one for an infinite while loop in its main function). However, for certain situations, when I run my program in debug mode, I have noticed that one of the threads' exit status was a 1 (in other words, it r...
Hello
I want to be able to step into the source code that is behind a 3rd party (not .Net framework) dll referenced in my own user code. I've done this before but can't now. When I try to step in, VS says there is no source available and would I like to go to disassembly.
How do I get VS to ask me to link to the source code to step in...
The accepted answer to the question
http://stackoverflow.com/questions/298708/debugging-with-command-line-parameters-in-visual-studio
accurately describes how to set command-line arguments for a given project: "In VS 2008, right click the project, choose properties, go to the Debugging section -- there is a box for command line argumen...
Hi,
Following my last question (see: http://stackoverflow.com/questions/1184175/problem-in-hosting-activex-on-vista-in-a-visual-studio-6-c-application) I ran into a strange problem. I hope this’ll be a simpler issue to the experts here:
Each time I run certain application like iexplorer or firefox, the Visual Studio 6 suddenly opens up...
I'd like to step into Microsoft's source code but cannot.
I followed the instructions at
http://referencesource.microsoft.com/serversetup.aspx
In particular, I disabled "Enable Just My Code"
and Enabled "Enabled .NET Framework source stepping".
Finally, set the source symbol location to "http://referencesource.microsoft.com/symbols".
...
my application shows this error
asm CPSqliteConnectionStatementForSQL 0x30897lb3:10
and it stopped at this breakpoint in debugger
0x308971cb <+0024> mov 0x8(%edi),%eax
does someone know about it?
...
I have a large C++ application running in a Win32 and a x64 Version (using Windows XP x64). When debugging the x64 Version, after each code change the first debug session i start stops with
Unhandled exception at 0x77ee5f3c in myapp.exe:
0xC0000005: Access violation writing location 0x0000000000030c90.
The callstack shows endless rec...
I have a driver that directly avoids the BSoD and turns the screen of Windows Vista into black with few colourful dots and stripes. I am finding a memory dump on the system afterwards and DbgView is wonderfully showing me a stack trace (stating that this might be a garbled stack and some parts might be incorrect). Pity is, the commands f...