The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
32 views

Resharper 7.1, Mixed Versions of DevExpress in VS2012 Ultimate Crashes

After a recent purchase (Apr 2013) of Resharper 7.1, although the VS IDE did not crash, The Visual Studio IDE Editor demonstrated strange behavior when refactoring code. My first instinct was to ...
0
votes
0answers
14 views

phonegap scanner app crashing on options button press

My app to scan barcodes is working ok but when i press the menu button while scanning it crashes. The logcat is as follows 05-16 20:58:56.186: E/AndroidRuntime(8240): FATAL EXCEPTION: main 05-16 ...
2
votes
1answer
49 views

Intermittent Failure with Blackjack code

The purpose of this code is to play a simulated game of Blackjack. The 'Dealer' is automated and will deal two cards to itself and stop when it wins/busts or hits 17. Then the user draws until he/she ...
-1
votes
0answers
51 views

Mac OS X 10.6.8 | System Preferences crashes on startup of the accounts menu [closed]

Whenever I click on the Accounts setting on SysPrefs, It crashes and I get this error message: http://pastebin.com/G65TdehA. This is very annoying as if I happen to get a virus, I won't be able to ...
0
votes
1answer
51 views

Android app crashing

I'm at the final stage of my development in my app but I cannot find the reason why the app is crashing, hopefully someone here can. It is taking input from a different file, but when I try to search, ...
0
votes
0answers
36 views

Android service crash behaviour

I know that service crash behaviour is common in android and if crash happens then service will automatically restart. I have three services(A, B, C) which runs on bootup and one service(A) starts ...
0
votes
1answer
30 views

Android retrieve service crash time

I am working on three different services and on device bootup, one service starts other two services. Right now its working fine but some times my service crashes and it restarts itself. I know that ...
0
votes
1answer
12 views

What OS things need to be checked for deploying shared library

I am facing a problem, by code was compiled in gcc version 3.4.6 (RED had Linux) and share library is deployed on some other linux system it has gcc version 4.1.2 . The code is crashing while exiting. ...
0
votes
1answer
30 views

Microsoft.Moles.vshost has stopped working

I have a bunch of unit tests written in C# that use moles for mocking a serial port class. I'm using Visual Studio 2008. This has all worked fine until today when I went to re-run the tests... and ...
0
votes
2answers
83 views

Android app crashing and can't find why

so I've been looking on here for a solution/reason on my app crashing. Additionally my logcat won't work. When it did work, it reported something wrong with the main activity, but I provided all ...
0
votes
0answers
65 views

riak-cs crashing with a lot of requests

I'm testing RIAK-CS as an S3 alternative. I currently have 3 nodes with 4GB RAM and 2GB SWAP each. I pushed 10GB of data to RIAK-CS. Except the high IO, everything was fine. Then I tried to pull that ...
0
votes
2answers
83 views

Codeblocks project.exe has stopped working C

Every time I build and run my project file, it crashes once I interact with it. #include <stdio.h> int main() { float complexnumber, a, b, r, j, theta; j = -1; complexnumber ...
0
votes
2answers
360 views

My app keeps crashing

I made an app in eclipse and it keeps on crashing every time i want to open it.The app is supposed to be able to make the phone turn off when a specifically worded text message is received.It does ...
2
votes
2answers
122 views

Facebook Web Dialog Crashes after clicking on Alert View button (iOS)

I'm trying to integrate an iOS application with Facebook. Login and most of the features work well but I am experiencing a little-big problem when I try to get FBWebDialogs to share something that ...
0
votes
0answers
45 views

PHP code is overloading, slowing the browser and eventually crashing

I've got the following PHP code implemented on a single page to render a report from an API call but for some reason it's progressively eating up resources until the browser eventually crashes. Any ...
0
votes
4answers
105 views

Loop crashing in C

I'm very new to C and I'm still learning the basics. I'm creating an application that reads in a text file and breaks down the words individually. My intention will be to count the amount of times ...
0
votes
2answers
58 views

Replaced the viewController

I am kinda new to programming and not sure what I did here but I was setting up a new VC class and accidently replaced the standard VC which is automatically set up in my storyboard upon building a ...
0
votes
0answers
31 views

application shuts down when I create an ArrayAdapter object

Here is the code MainActivity.java: public class MainActivity extends Activity { public Context context; private Bluetooth bluet; @Override protected void onCreate(Bundle savedInstanceState) { ...
0
votes
1answer
46 views

Xcode application crashing with no errors

I accidently deleted my Main VC. I brought them back in and reset the target memberships so now I do not receive any errors. The problem is when it launches it now crashes straight away. The project ...
0
votes
0answers
112 views

vb.net application not working on some computers

i have created a simple vb.net application that changes some registry keys and launches another program. I put my exe into a setup wizard to install it to other computers. the setup wizard places a ...
0
votes
2answers
87 views

Python crashes when I access my function with wxPython

So, I have two pieces of code. The first is the GUI class: ''' Created on Mar 6, 2013 @author: Zach ''' # -*- coding: utf-8 -*- ...
0
votes
0answers
25 views

ajax script locking up

I have a chat script that ran just fine on my old host. Now i am On my own dedicatedserver and the ajax that refreshes the chat keeps locking up/stalling. Can anyone please tell me why this is ...
0
votes
1answer
52 views

php and sql commands crashing my server

I'm trying to query my database for all my products and when I do that it's crashing the server and I can't get the information SELECT categories.category_id, categories.category_name, ...
0
votes
1answer
860 views

app keeps on crashing when added “mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();”

I am trying to learn how to develop a google map Android app using Google API V2. It works when I have not added the private GoogleMap mMap = null; mMap = ((MapFragment) ...
0
votes
1answer
93 views

Why is PyObject_Print crashing?

I've been playing with the Python 3.3 C-API to see if I could possibly use it in a planned upcoming project, and almost immediately ran into problems. Even code this simple crashes with 0xc0000005 as ...
0
votes
1answer
43 views

Timing generator in c++

I completed a prime generating program. Now, i want to test for the amount of time it takes to all of the primes and store these numbers in an array. I wrote this code.... #include <iostream> ...
1
vote
4answers
73 views

App keeps on crashing

I've got all of my code now but keeps on crashing. Basically, the code is a button that, when clicked, will add a number to an amount. So, when clicked once, it will be 1; clicked again will become 2, ...
0
votes
0answers
119 views

android:onClick=“onGroupItemClick” keeps crashing

Here is some code which keeps crashing (a simplified version from a book). Android version 14. If I remove the line: android:onClick="onGroupItemClick", it will be ok. Does anybody know why and how to ...
0
votes
1answer
43 views

Unable to return site IE8

Okay, I am a little stumped. My site at http://arcrealtyco.com will not load in IE8. I have updated jQuery (1.9.1) and updated Modernizr (2.5.2) running on the site. It works fine in ie9 while using ...
0
votes
2answers
219 views

Extjs 4.1 (rc2) - Extension on Ext.panel.Panel sometimes does not finish rendering

I have a class extending on Ext.panel.Panel. Simplified code: Ext.define("some.namespace.MyOwnPanel", { extends: "Ext.panel.Panel", constructor: function (config) { var me = this; ...
0
votes
1answer
128 views

App.vshost.exe crashing on solution load in Visual Studio 2012

Let's say, I'm completely desperate, trying to debug this issue for the last day and a half, with a important deadline approaching... I'm developing a project in C# targeted to 4.0 on Windows 7 ...
1
vote
2answers
161 views

Android - a Thread is crushing the application

I created a simple application. When the user touchs the "Start .." button, it shows a "loading animation" on the button label. I created application on my PC (e.g. desktop application) , and it ...
1
vote
2answers
173 views

XML Relative Layout order change Crashes Program (Android)

I want to move an ImageView to the top of my layout so that it will be behind the other objects. When I do, it crashes. This works and the program compiles and runs: <RelativeLayout ...
-1
votes
1answer
199 views

iOS scroll view for photo scrolling [closed]

I am trying to implement a scroll view (left to right) for the list of photos (as in Foodspotting app.). I have used the Scroll view (like in the iOS App. store) however, the issue is that when I try ...
0
votes
0answers
164 views

App crashing while using DatePickerFragment

I am using DatePickerDialog to set the date, but my app is crashing when I use this DatePicker .. Means the app doesn't crash when I don't use it and just submit the data ... Here's the code of ...
0
votes
3answers
112 views

my android emulator is crashing when running applications

I have installed Android SDK(Build: v21.0.0-531062) in Windows7. My AVD configuration is this device: 4.7 WXGA(1280 x720:xhdpi) Internal storage 200MB SD card 200 MB. When I am running my ...
0
votes
1answer
219 views

Xcode 4.5 with iOs 6 issue in iOs 4.3

I was developing iPhone/iPad apps using XCode 4.2. With the recent update, I upgraded my XCode to 4.5 with iOs6. And I developed an iPhone app with this. But the issue when I run the app in iPhone 3GS ...
1
vote
0answers
89 views

iPhone app crashes when changing views after using overridden init method

So what I'm doing is trying to pass a MQMapView from one view controller to the next using: MapSearchView *controller = [[MapSearchView alloc] initWithNibName:@"MapSearchView" bundle:nil ...
0
votes
0answers
311 views

adb.exe always crashes during shutdown - and thus blocks it. How to avoid this?

Since I occasionally develop for Android I also have adb.exe running on my (former Win7, now Win8) system. I wouldn't mind that process if it weren't that adb.exe ALWAYS crashes during System restart ...
2
votes
2answers
111 views

Debugging hard-to-find exceptions

First of all, thank you for taking the time to view my question and help. I noticed that a lot of questioners here show little or no appreciation, but I'm sincerely appreciative for the help and the ...
2
votes
1answer
400 views

Android Cocos2dx Crash

I have made game in cocos2dx for ios device. Now I want to port it for android but, the code which works fine for ios is crashing for android. The eclipse shows 3 types of logCat outputs which are as ...
0
votes
2answers
421 views

Published android app crashing

In the emulator, and in the device i used to test the app, it ran smoothly. Today I published it to the market, and after i try to click a button to move to another page, It crashes. I already tried ...
1
vote
0answers
135 views

Matlab Psychtoolbox for behavioral sciences keeps crashing when running complex scripts.

I've been trying to run this little and funny script I got from a Matlab for behavioral sciences course, link is http://faculty.washington.edu/ionefine/html/Psychtoolbox.html ... (file's called ...
0
votes
1answer
385 views

Java Web Application not working on windows 7

I have a java web application installed on a server which is accessed via intranet. It worked well when i run it on a client pc with Windows XP and IE 6, with Jinitiator. The problem comes when i run ...
0
votes
0answers
251 views

JVM Crashing with JNI and RMI

We use JNI to start an JVM. And in this JVM we use "LocateRegistry.createRegistry(JMXPORT);" to create registry. But the JVM always crash at Solaris with JDK1.6 ( It works fine with JDK1.5). The crash ...
0
votes
1answer
72 views

Why is this custom network-service crashing (written in C)?

I wrote this program which listens on a given port and then, once a connection is received, outputs a single line of text and disconnects. It runs for days, processing thousands of queries, but then ...
0
votes
3answers
203 views

C# How to investigate why my service is stopping unexpectedly

My Service works perfectly fine for a random amount of time and then just stops. I am catching all exceptions that i can see. I have added a try/catch around the service creating to try and get some ...
0
votes
1answer
165 views

jquery animate memory problems

I have used jQuery .animate (Inspiration from how to get a div to randomly move around a page (using jQuery or CSS) ) to animate a number of divs. I have always used javascript, not jQuery as a rule ...
0
votes
1answer
184 views

VB.NET program crashing on other pc's (SOLVED)

I'm trying to make a launcher for a game i am making, I am having an issue though. The program works perfectly fine on my other computer. I recently transferred the source to my computer. I'm having ...
0
votes
3answers
277 views

Iphone app crash when releasing CGColorSpaceRef

I am using CGColorSpaceRef and when i release it, its crash. The Way i creates it and release CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); After doing some task and then release ...

1 2 3