crash

Reloading tableView when subclassed causing crash

Hey guys! I have some problems reloading my tableView. I have subclasses my tableView, with a class called RadioTable. I have also subclasses my TableViewCells, but thats not important here. I need to point out that i'm pretty new, and built my subclass from some tutorials and stuff. First of all, here is the error message i'm getting ...

[C#/.Net] Webclient.DownloadString crash.

I have a function called GetIP which I call on startup and when the user presses a button. for some reason it does not crash on startup, but it does when calling the function with a button. No exeptions nothing it just freezes. code for function : private void GetIP() { string pageTitle = functions.GetWebPageTit...

Vector insert crashes program.

Can anyone tell me why this crashes my program? It's suppose to make it so order has all the elements in the t vector situated by (y + height). Edit: crashes on the lines with "insert" in them. void createDrawOrder(vector<Thing*> t, vector<int> *order) { int min = t[0]->y + t[0]->height; int max = t[0]->y + t[0]->heigh...

Simple webpage that crashes Internet Explorer 8

Hi, I've tried the following HTML code on several different Windows 7 computers with Internet Explorer 8, and everywhere this crashes Internet Explorer. I have not been able to reproduce this with IE7, or on Windows XP with IE8. <!doctype html> <head> <title>Crashes IE8 on Win7</title> <style> article { display: block; } </style> <scr...

Custom control cause Visual Studio 2008 to CRASH

The following code is a custom control. Using this control in the Visual Studio designer cause Visual Studio to CRASH without any noticeable details. I'm using Visual Studio 2008. Am I doing something wrong here? using System; using System.Text; using System.Windows.Forms; using System.Drawing; namespace InstalacionesSayma.GUI { ...

Dismiss UI action sheet - crash

Hi guys, I have a "again" ;-) a problem i can't solve. My app launches on a tableView. When i select a cell, i go to the "detailView". On this view i add two buttons on the toolbar this way : UIToolbar* tools = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 115, 44.01)]; // tab where buttons are stored NSMutableArray* buttons = ...

iPhone app crash

Hi all, I have a problem with my application. It crashes after few times of working with images and I have no idea why. I have a TabBar, in one item of TabBat I have a navigation controller. In the root controller of that navigation I have a two buttons. One button is to get an image from camera or photo library, the second button is to...

iphone how to get crash log from customers ?

HI, any body knows how i can get crash logs from customers ? instead of manually asking them to sync and go to this directory and this directory and send it. is there any automatic way to do that ?? . to send a crash report to our server by some mean. ...

X-Code crash when presenting model view

When I am try to present a UIViewController with a NavigationController from a UiViewController, the X-Code is crashed, I don't know why because I do it like all other views in my App, but just only this one has problem, I tried to debug but I didn't find out the cause, X-Code crashed right at "presentModelView:" method, and a funny thin...

Flash crashes when stopping directshow source filter

Here's the callstack : 0480b000() vcam.ax!CSourceStream::DoBufferProcessingLoop() + 0xe1 bytes vcam.ax!CSourceStream::ThreadProc() + 0x13e bytes vcam.ax!CAMThread::InitialThreadProc() + 0x51 bytes kernel32.dll!7c80b713() The callstack is from this thread: 0 > 0x000015b8 Worker Thread CAMT...

Testing iPhone apps effectively with release builds

We have an app that has crashed on armv6 iOS devices coming from the App Store. armv7 iOS devices ran it just fine. When the app was built and tested as debug, it ran just fine on both armv6 and armv7. In the logs, I was getting EXC_BAD_INSTRUCTION when it tried to construct an object from a library. The crash appeared to be a linking er...

iPhone app crash on 4.0

All crash reports submitted for our application on iOS 4.0 are giving the below information: Application Specific Information: [3532] was suspended with locked system files: /private/var/mobile/Library/AddressBook/AddressBook.sqlitedb Any idea what this indicates and what could be the possible cause of crash. Our application is not int...

NSNotification to detect other program's crashes

I was planning on writing a small daemon that detected whether another app crashed, thinking all the while that the system would send an NSWorkspaceDidTerminateApplicationNotification, but this is not the case. Assuming that I do not want to create a launchd process to simply re-launch the crashed application, can I detect the crash an...

Precompiled user control crashes VS

I have created a precompiled user control. The basic steps are to create a Web Site project then publish to generate the DLL. Then I created a Web Application project and added a reference to the DLL. In my page I registered the DLL and was able to access the control as <prefix:control_ascx ... />. If I run without debugging Ctrl+F5,...

RealBasic app crashes on writeline

Hi, I have an Mac RB app that crashes when I write a line to a TextOutputStream on the user's preferences. The write operation works great when the user is the admin, but any other user crashes. This made me think it's a permission issue, so I tried changing permission, without luck. The error is: "An exception of class NilObjectExcepti...

Visual Studio 2010 crashes upon editing a C# string literal

My VS2010 Premium RTM installation has developed a nasty habit of crashing when I edit a string literal. It 'feels' like the Intellisense bug and I have an unreasonable and unsupported hunch that this has something to do with ReSharper, because the ReSharper integrations get slower and slower until finally the crash happens when I edit a...

OpenCV crashes trying to read a video with RELEASE build

Using VideoCapture vcc("someDir/someFile.avi"); as the first line in my code (OpenCV 2.x, Win7, VS2010), the execution for RELEASE crashes but the DEBUG works fine .. as slow as expected though. It only crashes when trying to read a video file which means passing a string to the constructor. The error looks like this: Unhandled ...

Environment.Exit() causes my application to crash after using Process.Start

I have a small form that creates two background worker threads which listen for messages from two separate server processes. When the user attempts to close the form, I handle the OnFormClosing event (or they can click an 'Exit menu item) which calls CancelAsync() on both threads. The form then waits until the IsBusy property for both ...

Does Visual Studio 2010 create backup files?

Just got a random bsod on my machine and Form1.cs is suddenly empty, any way to restore the code? thanks.. ...

My web app non-deterministically crashes in Google Chrome

In my web app, I use Ctrl + Arrow keys to navigate from cell to cell in a table. All cells contain a visible <span>, and a hidden <input> element -- their values are kept in sync. When a cell is activated, the <span> is hidden, while the input is shown. Everything works just fine in Firefox, IE, Opera, etc. Yet, when I load up Chrome,...