I am building a site that will not work in IE6, intentionally. IE7 Is the oldest supported IE browser for my site.
I am having a problem in IE 7 when you arrive at my site. A popup says: Script Error Line 55 Char # Error: 'cms_ims' is undefined. Then you have to press continue running scripts, yes. Anyone know whats causing this in my...
Hi, I am building a site, and one of my pages is causing a bit of a problem in IE7. You can view the site here: www.vitaminjdesign.com/contact.html
I wrote a jquery script that basically loads a success image if the contact fields have an entry, and a fail icon when they are empty. It works perfectly in all browsers, but in IE7, an imag...
Valgrind produced a vgcore.NNNN file -- how do I debug the core using GDB? Do I need to use the original executable and supply the core, or is there some other way to do it?
Using valgrind as the root executable doesn't seem to work, and using the executable that was being run under valgrind directly in GDB with the core seems to produ...
I want to attach to a process(a.exe) as soon as it is spawned, is it doable with VS? I only know the name of the process. Actually what I want to accomplish is set a breakpoint in c# code, but the code is belonging to another executable which will be launched by current running application(c.exe). The code is inside the initialize period...
I'm sure this is a simple misunderstanding but I'm trying to change the default browser in Visual Studio 2010 from Firefox (my machine's default) to IE so that VS will stop debugging when the window closes.
Based on ScottGu's post on the subject, I'm expecting a "Browse with..." option when I right-click on an aspx page in my MVC app; b...
I ported my application from VC++7 to VC++9 recently. Now it sometimes crashes at exit - the runtime starts calling global objects destructors and an access violation occurs in one of them.
Whenever I observer the call stack the top functions are:
CMyClass::~CMyClass() <- crashes here
dynamic atexit destructor for 'ObjectName'
_CRT_INI...
Hello.
There is a lot of disassemblers witch allows seeing the internal structure of .NET base assemblies.
Is there a way, add-in or similar for Visual Studio that will permit debugging through the disassembled code?
By example I have a user control I set the Width = 100 but the width always remains to 200. After a half on hour I rem...
I am trying to start using erlang:trace/3 and the dbg module to trace the behaviour of a live production system without taking the server down.
The documentation is opaque (to put it mildly) and there don't appear to be any useful tutorials online.
What I spent all day trying to do was capture what was happening in a particular functio...
Does anyone know where I might get a list of ALL bugs for currently released versions of FP10?
Reason I ask is spent a day debugging one very HUGE issue with the activeX(IE) only version of FP10.02.
This plugin DOES NOT recognize Stage.stageHeight, Stage.stageWidth !!!
What makes this worse is this particular version IS NOT available...
Hi there! Some of you may have become very familiar with me in the past couple of days. (I've asked a TON of questions) Anyways, I was wondering what is the best way to debug jQuery? I don't really like having to bug you guys for the answers all the time so I was wondering if there is some tool, or method that you guys use to debug? Than...
In my project the swf file is embedded in a c# winform, the swf and the winform project are both built by myself, is it possible to set a breakpoint in the swf file using Flash Builder? I think the scenario is quite similar to embed a swf file into a complicated html file and still need to debug the swf file, thanks!
The problem has bee...
Hi We are testing our app in Google chrome for support. The basic loading is in scrambled
and all the pages are in total CSS mess which we need to clean up unfortunately.For this I require a tool which works similar to firebug for Mozilla.Also to check headers, cookies, caching and POST data ,compression, redirection & chunked encoding ...
Here is my problem (C#) :
double Y = 0.0;
double X = -21.0;
double q1_Test = Math.Atan2(0.0, -21.0); // gives Math.Pi
double q1_Test2 = Math.Atan2(( double)Y, (double)X); // gives Math.Pi
double w1 = <SomeclassInstanceGlobalHere>.getW1(); // This is a class which updates a variable
double w2 = <SomeclassInstanceGlo...
Since I do not have access to the complete source code of a library I'm using, but I do have the pdb files, is it possible to set a breakpoint in the "debugging source code"?
If so, how would I do that?
...
Hello.
In Visual Studio (2005/2008) we can set a conditional breackpoint when the condition is True.
Now, there is an other option - when is "Changed".
What does this mean and how/when should I use it.
I saw already related page on MSDN but this "changed" it still not clear for me...
Thanks.
...
I just started using Eclipse so go easy on me ;). But when trying to debug a JUnit test case I get a dialog that states the the source is not found when I get to this line in the code in my test method:
Assert.assertEquals(1, contents.size());
I know I should probably go and try and download the source from somewhere, but I really don...
Hello, I want to find a way to do a debug probe in Java. I'm used to working in Wingware Python IDE and it lets me set a breakpoint and once the execution reaches it, I have a Python shell, where I can execute arbitrary Python code in the context of a place, where the execution is paused. So I want to do the same in Java, i.e. set a brea...
I've been writing an Apache module recently. It's been interesting to work with the memory pool paradigm, but I'm clearly not doing something right. I've got a segfault, and I cannot seem to find it. My current debug cycle involves ap_rprintfs and a make script that rebuilds and reloads Apache.
What kind of tools are available for work...
In the old days programming used to involve less guesswork. I would write some lines of code and be 100% certain about what the code does and what it does not at a glance. Errors were mostly typos, but not about the functionality.
The last years I believe there is a trend for this "trial-and-error" programming : write the code (as if in...
Hi,
I'm currently working on adding exceptions and exception handling to my OSS application. Exceptions have been the general idea from the start, but I wanted to find a good exception framework and in all honesty, understand C++ exception handling conventions and idioms a bit better before starting to use them. I have a lot of experien...