|
I recently started a new job and my Lead is out sick. He assigned me a bug in our code that only affects IE6. The dev. box I'm running is Windows Server 2K3 with IE 7 though.
How can I open the web page and debug it from my computer in IE 6?
Started by JamesBrownIsDead on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
If you need to debug javascript or anything.
I think SuperPreview will just show a side-by-side visual comparison .
Edit:
Sorry I didn't notice your "...and debug it..." statement in the original post.
|
|
Is there a way to slow down my development computer to try to replicate a defect that only occurs intermittently on a slow machine?
(For what it's worth, Ableton Live has a CPU usage simulation feature, but I've never seen something like this for debuggers...
Started by Paul Reiners on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
:)
The currently popular stability test programs are:
Prime95 (this program's torture test) 3DMark2001 CPU Stability test Sisoft sandra Quake and other games... .
I assume that's what you mean by "slow down".
This tool provides a decent CPU stress capability.
|
|
When using the "Attach To Process" feature in Visual Studio 2008, what is the difference between "detach all" and "stop debugging"?
Started by JoelFan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It should be noted that they pretty....
On its host computer even though it is no longer attached to the debugger." - MSDN
Stop Debugging"Detach All" will leave the process running "Stop Debugging" will (typically) kill local processes.
|
Ask your Facebook Friends
|
How do I display localhost traffic in Fiddler while debugging an ASP.NET application?
Started by Michael Kniskern on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Probably the easiest way to monitor traffic to localhost.
Localhost with your computer's name.
|
|
Hi,
In One event we have some debugging questions and I have to design some really good debugging problems in C/C++.
I want to know how can I create some good problems on debugging, means what all aspects should I consider while designing the problem....
Started by GG on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Source....
Without going into details, I can see the following categories :
Source-level debugging - no hints Questions assuming a particular endianness or padding.
Debugging is a broad scope, and it may be wise to reflect that in your questions.
|
|
I have this project that recently started crashing on beta builds of Windows 7. Something about the XAML parser going belly up.
If its easy I would not mind putting a work around in place to compensate for the new .Net behaviour in Windows 7.
How would...
Started by Sam Saffron on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Of course for a richer debugging experience you will need PDBsThe easiest way would probably....
I found the simplest way for me to debug was to install debugging commands to debug through stuff.
More familiar with that debugger.
|
|
Hi I'm trying to Remote Debugging a Windows Forms Application (C#), but i'm always getting this error:
Unable to connect to the Microsoft Visual Studio Remote Debugging Monitor named 'XXX. The Visual Studio Remote Debugger on the target computer cannot...
Started by Baget on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use "Run As..." to run:
mydevcomputer\debug mytestmachine\debug
with the same password and run the VS2008 and the Debugging: "computers....
Msvsmon.exe on the target computer instead of the Remote Debugging Service.
|
|
I am fairly new to remote debugging in Visual Studio, and by new I mean I have never done it before. Here are the steps I have taken to try to remotely debug an application on one of the servers in our network:
open a website in VS2008 "\\server\website...
Started by Russ Bradberry on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To add a pathname to the symbol file the Debugging node to open it....
Note that if you are debugging a program on a remote computer the cache them it doesn't have the necessary debug symbols to break on.
To this directory box.
|
|
Are there any books on debugging techniques? A friend of mine is learning to code and he asked me this question. I told him I don't know of any. Is it that you just have to go through the School of Hard Knocks to learn?
Started by zooropa on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
See also....
From the DDJ review, by David J Agans.
This is a good high-level overview of how to debug: Debugging widely be automated, which allows you to let your computer do most of the debugging.
Check this list on amazon.
|
|
Visual studio debugger hangs while loading symbols for my application(native IA64), SP1 is installed. This started to occur, after i install debugging tools for windows(64 bit version), and reboot my computer. This issue is not depend on my project, even...
Started by Lazin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The way around this is to load the symbols once, and then uncheck the symbol server URL under Tools->Options->....
Server to access debug symbols for the Windows DLLs, VS2005 can try to access the symbol server every time you debug.
|