crash

Why is NSFetchedResultsController performFetch: crashing when recreating an NSFetchedResultsController with an equivalent NSFetchRequest?

Why is [NSFetchedResultsController performFetch:] crashing when recreating an NSFetchedResultsController with an equivalent NSFetchRequest? I have an app that has a table view controller of threads (message threads). When you tap a thread it loads another table view controller that uses an NSFetchedResultsController to get all the messa...

WCF Catastrophic Failure

Hi, I've got a real lemon on my hands. I hope someone who has the same problem or know how to fix it could point me in the right direction. The Setup I'm trying to create a WCF data service that uses an ADO Entity Framework model to retrieve data from the DB. I've added the WCF service reference and all seems fine. I have two sets of ...

Javascript is crashing when trying to access silverlight content

I have a web application containing a silverlight control. When the specific page is accessed that contains the silverlight control a javascript is executed and if this script is executed too early, the script crashes the javascript engine in IE, not even a try/catch can handle the error. Simple javascript silverlightHtmlElement.Conten...

Crash due to missing standard Fonts (VB.NET)

Our automatic crash-report system has started sending in more and more reports of this kind of crash: System::Windows::Forms::Application::ThreadException event occured SENDER: System.Threading.Thread EXCEPTION: System.ArgumentException MESSAGE: Font 'Arial' does not support style 'Regular'. SOURCE: System.Drawing CALL STACK at Syst...

Interpreting Java crash files

I have a Swing application that is heavy customised with a lot of custom painting mainly on the panels and button to add gradients and round borders. The application infrequently crashes with exactly the same error and i get hs_err_pid[0000].log Snippet: Java Threads: ( => current thread ) 0x032ff400 JavaThread "Thread-1" daemon [_t...

Can I get debug symbols for flash player? Or any other way to get support for flash?

The company I am working for has a flash component (using flex and cs4) that crashes intermittently in chrome, FF and IE. (so far only win32 platforms) I submitted a bug report to Adobe but have not heard anything back from them. Their support process seems like a black hole. WE can get a dump from Flash using these steps but after s...

get console log on MacOSX from another application

With the application Utilities/Console.app, I can see the console output of applications. Is there a way to access this log from another application? To be more specific: I am writing a crashhandler for my application and I want that it attaches the console output to the crash information. ...

Android Emulator Alarm Clock Crashes

I am using the Android Emulator to debug my application, first off it is ridiculously slow, I mean like 15mins to load slow and on top of it, my Alarm Clock application fails? Am I the only one, or do other people experience this? Is there a fix or will I just have to go cook steaks while the emulator is booting? EDIT: I am running it ...

Crash when opening file in Visual Studio 2010

I have just installed Visual Studio 2010 Beta 2 and it crashes when I try to open a file - also when opening any cpp file through the 'File' menu. Any ideas? Where is the appropriate forum to ask about this? ...

open Adobe Flash IDE, open windows explorer, crash

I installed Adobe Flash CS3 on my Vista Ultimate 32-bit machine (4GB Ram) last year. I occasionally had a problem where if I had opened the Adobe Flash IDE, and then opened Windows Explorer, the machine would freeze and require a reboot. Recently, this problem has gotten much worse to the point where it's very difficult for me to get any...

How to test if a DLL can be loaded without an error

Hi..! I have a native C++ application (no fancy .Net stuff just C++). However it uses some optional .Net assemblies through mixed mode wrapper dll files. These dlls are loaded using delay load. Thing with mixed mode wrappers is they need to be fully trusted in order to load. So when the application try to use the dll if it is not there ...

Internet Explorer Profiler

Is there any profiler sort of tool which can debug which javascript/object in the DOM is causing the Internet Explorer to hang/crash. The CPU usage is going to more than 60% and I want to know the reason behind it, which script/Flash Object is causing that. Thanks for the help. ...

My program crashes when GC perform garbage collection

My program has a trouble: When GC perform garbage collection,my program always crashes at a function,which is called by main flow several times before crashing and the first line of this function is GC.Collect().The function main action is sending some bytes to serial port and receiving some bytes from the same serial port( Both send...

WPF d3d9.dll crash

I have several applications in WPF that periodically crash on 2 different servers (a dell poweredge and a HP proliant). The problem is that the WPF applications both crash within d3d9.dll. Rebooting the servers always fixes the problem. The problem only occurs a few times a month. Both servers are running Windows XP instead of Windows 20...

Analyzing application fault in msvcr80.dll, fault address 0x00008aa0

I'm debugging an intermittent problem in which an application (created using C++ in Visual Studio 2005) is faulting. The event log provides the following information: faulting module msvcr80.dll version 8.0.50727.1433 fault address 0x00008aa0 I did a Google search and found many other examples of applications crashing with this parti...

browser crash debugging/handling

Hi is there a way to handle or debug the scripts that cause browser crash? my page which has almost 8 jquery plugins causes browser crash in macosx snow leopard, and just in chrome and safari. i realized when i use ajaxupload plugin it happens. but how can i debug it ? there is no problem in windows. Thanks ...

Porting Code to Windows 7

I wrote a game years ago (under Windows 95) in Pascal. Since then over time I'd checked it and it still ran with the newer OSs. It works in XP. It works in Vista. However under Windows 7, even in the XP compatibility mode, it crashes on the spot. I've yet to get a chance to attach a debugger and wade through the decade-old code, but...

Do NSUserDefaults persist through an Update to an app in the Appstore?

Hi, Is this the case? Do NSUserDefaults get reset when you submit an update to an app on the App Store, or are they reset? My app is crashing when updated but not crashing when downloaded fully - so I'm trying to determine what could possibly be different in the updated session to the freshly downloaded session. Cheers, Nick. ...

c++ Debugging Exception c0000139

Hi, I am currently trying to get to the bottom of a client crash with one of our applications. I have wrapped the app in an exception handler which creates a mini-dump when the crash occurs. The application crashes with the exception c0000139 (of which there isn't a huge amount of documentation). The callstack looks like this ntdll....

Calling NSPathControl object in thread crashes

For some reason calling an NSPathControl object in a thread is causing crashes. - (IBAction) action5:(id)sender { [outlet_NSPathControl1 setURL: [NSURL fileURLWithPath: @"/Users/admin/"]]; // Works fine here [self performSelectorInBackground:@selector(background1) withObject:self]; // Jump to the thread } -(void) background1 { NSAut...