crash

Why does my website crash in IE?

My site works fine in Firefox, but it crashes in IE. I am using alot of jQuery in order to fade in content. When the user clicks on one of the above links a few times, it will crash in IE. Here is my site: Idea Palette I have absolutely no idea why the site crashes in IE. I don't even know where to begin to debug my problem. I don't h...

Why does my site crash in IE7 when fading to a page that has another fade on it?

Please look at http://www.idea-palette.com I have multiple pages that are being faded in using the top nav. When the user clicks on any of the above buttons to fade in another page that contains the Slideshow using the jQuery Cycle Plugin, IE7 crashes. When I comment out the jQuery that controls the fades of the slideshow, IE7 does not...

C# crash when loading C++ dll

Hello, My program is written in C# NET 2.0,it's using external functions from a dll written in C++ using Microsoft Visual Studio 2008 SP1. If I remove the dll from the directory the program is placed,the program crashes at the moment it should use the dll.That's normal. But the users that are using my program get the same error at the ...

Crash shows Visual studio option. But not showing dont send message.

Hi All, When I get any crash in my pc, I used to get don't send dialog box. But recently it is always showing some dialogbox, and it is asking to debug in visual studio. I dont want this dialog option. How can I remove this option. Could any one knows information about this. Thanks & regards, Haranadh ...

I am not able to get dump file for crash.

Hi All, I am getting crash when I stop my server. But I could not see any dump file for this crash. Why dump file is not getting created. If possible could any one let me know where dump file will be created. Thanks Haranadh ...

Cannot Load C++ DLL in C#

Hello, >My previous thread< I created this one,because I installed WinXP on VMBox and I cannot get it working again. This time I created an OnLoad Event on my form if (LoadLibrary("blowfish.dll") == 0) { Misc.LogToFile("Could not load dll", true); Application.Exit(); } Runs fine on my...

Strange code crash problem?

I have a MSVC 6.o workspace, which has all C code. The code is being run without any optimization switch i.e with option O0, and in debug mode. This code is obtained from some 3rd party. It executes desirable as it is. But when I add some printf statements in certain functions for debugging, and then execute the code, it crashes. I sus...

Problems with starting a program + DLL multiple times in Windows XP?

We develop a network library that uses TCP and UDP sockets. This DLL is used by a testclient, which is started multiple times at the same PC for a load test. In Windows Vista, it is no problem to start the testclient many times. In Windows XP, starting it up to 5 times is no problem, but if we start it 6 times or more, and then closing ...

Visual Studio 2008 Crashes When Opening Project Properties

I have a multi-project .NET application which I am developing in Visual Studio 2008. If I try to open the project properties for one of my projects (to change settings or publish) Visual Studio immediately closes. There is no prompt to send a report to Microsoft, and two consecutive errors logged in the Event Viewer: .NET Runtime vers...

live debugging a stack overflow

I have a managed code Windows Service application that is crashing occasionally in production due to a managed StackOverFlowException. I know this because I've run adplus in crash mode and analyzed the crash dump post mortem using SoS. I have even attached the windbg debugger and set it to "go unhandled exception". My problem is, I can'...

iPhone SDK mem management issues - EXC_BAD_ACCESS

I've been staring at this same issue for a long time now, and would really appreciate any help or suggestions. I'm sure its something simple, but I can't seem to find it. In my app delegate I'm loading up a bunch of accessory objects (an object I created, which supports NSCopying) with the following code: NSString *path = [[NSBundl...

What does 8badf00d mean?

Sometimes my iPhone application crashes with a weird crashlog, that reads exception code is 0x8badf00d. The stacktraces show random snapshots of app execution, but nothing suspicious. This happens very rarely and I'm not able to find out how to reproduce it. Does anybody know more about this kind of exception and exception code? Here ...

Clicking 'Choose items' on the toolbox crashes Visual Studio 2008

Hey people, Ive searched high and low on this one. I don't have PowerCommands installed as many of the solutions say to remove it. Any other ideas on how to fix this issue? Im running Vista Home 64bit, VS 2008 SP1 Thanks ...

Problem when disabling checked iterators in vs2008 SP1 (_HAS_ITERATOR_DEBUGGING=0)

I've been having some trouble with vs2008 SP1 running in debug mode when I try to disable checked iterators. The following program reproduces the problem (a crash in the string destructor): #define _HAS_ITERATOR_DEBUGGING 0 #include <sstream> int do_stuff(std::string const& text) { std::string::const_iterator i(text.end()); r...

Windows 7 TextureBrush..ctor() error

I have a .NET 2.0 app that runs just fine on XP and Vista, but on Windows 7 RC (x64) it crashes with the following error: Exception Information Exception Type: System.OutOfMemoryException Message: Out of memory. Data: System.Collections.ListDictionaryInternal TargetSite: Void .ctor(System.Drawing.Image, System.Drawing.Drawing2D.WrapMo...

vhost.exe crashes when trying to make waveout work in C#.

I tried to use waveout in C# to play more wav files simultaneously (at least the different ones). (SoundPlayer object only plays one in a time, and I don't want to use DirectSound and MediaPlayer objects or any other advenced technologies for this simple goal.) I ported a working C++ code to C# and it works (after a research how to mars...

How to troubleshoot .NET 2.0 Error Reporting messages in the event log?

I work on an open source product called EVEMon written in C# targeting the .NET 2.0 platform, I have one user who is suffering from a strange .NET crash that we have been unable to resolve. Event Type: Error Event Source: .NET Runtime 2.0 Error Reporting Event Category: None Event ID: 5000 Date: 4/29/2009 Time: 10:58:10 PM User: N/A Co...

Xcode error: Failed to launch simulated application

Problem statement: Unlike people have asked at here and here I got this error after a brand new installation of leopard(hackintosh), this problem really driving me crazy.... and nowhere else to find an clue, I googled and visited every article related with this, still cann't get it solved After the first time install iPhone SDK 2.2.1...

Perplexing STL bug in Release in Visual Studio.

I have what I'm pretty sure is a bug in the optimizer in Visual studio 2005. The problem is with an STL map. Here's the relevant code: MyMapIterator myIt = m_myMap.find(otherID); if (myIt != m_myMap.end() && myIt->second.userStatus == STATUS_A) { //Prints stuff. No side-effects whatsoever. } else if (myIt != m_myMap.end() && myIt->...

Debugging commands (step over/into) cause unhandled exceptions

I'm using Visual Studio 2008 on a 64-bit version of Vista. After my program stops on one of my breakpoints, I can't step over or into the current line without either an Illegal Instruction exception or an Access Violation exception being thrown by my application. If I right-click on the next line and choose "Run to here" (equivalent to...