The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
7 views

iKey Editor quit unexpectedly? [closed]

I have recently downloaded the iKey software from PlumAmazing and every time I try to open the program I receive this crash report. I am not experienced in reading these codes, so I need someone to ...
1
vote
3answers
37 views

Can't finish execution by complete when user leave the app

I need to stop all that my app is doing (like vibrating) after the user quit the aplication, how can i do that ? My app vibrate the phone for certain amount of time that the user choose, but if the ...
1
vote
1answer
126 views

How to quit the application from the code

I am building a game using corona sdk. Inside the game, at the menu, I have an EXIT button. I want to know how I can quit the application and get to the mobile home screen or mobile menu? In other ...
5
votes
3answers
75 views

Stop an app by calling the lifecycle callbacks

How can I stop my whole App in simple terms? (all activities, services, Threads, etc. simply everything) The life-cycle callbacks (especially onStop() and onDestroy()) should be called. Google ...
0
votes
0answers
52 views

Zombie Process after using a Windows subclass callback

I'm using the SetWindowSubclass(...) method of the Windows API to kind of "hook" messages transmitted to a WinProc that is out of the scope of my application. My application is made of a core and ...
0
votes
4answers
173 views

Phonegap: force an app to quit instead of running in background

I'm developing an iPhone/iPad application through Phonegap, is there a way to implement a sort of "click here to quit app"? I mean quit for real, not "put it in the background and go to home screen". ...
2
votes
1answer
46 views

Eclipse does not confirm exit when hitting command + q

I generally close tabs while using Eclipse with command+w, however, sometimes hit command+q by mistake. Even though I have Eclipse set-up to warn me when exiting (Preferences -> General -> Start-up ...
2
votes
1answer
181 views

Excel application not quitting after calling quit

Hey guys I have a small problem that I can't seem to figure out. I am saving a DataGridView (it's contents) to an xls file. I have no problem in doing so except in my task manager its still showing up ...
0
votes
1answer
62 views

How to make my scala program quit and return to the REPL?

So I made this scala file and it works great when I load it into the REPL. What I want to do though is when the user inputs "Q", it exits the program and returns to the REPL. I already have readLine ...
0
votes
1answer
70 views

AutoHotkey: Exit Script without pressing a key after its done

Run "C:\Program Files (x86)\Total CMA Pack\totalcmd.exe" ^!F1:: ExitApp My Script works so far but it doesnt quit after its done. I just want to start totalcommander and send a hotkey ...
0
votes
2answers
91 views

Python 2.7 Quitting

I've added in this function which makes sure the user actually wants to quit the program. It works when you actually want to quit but if you want to return to the program it just loops the statement: ...
0
votes
2answers
91 views

Python socket accept in the main thread prevents quitting

I'm playing around with sockets in python, just for the purpose of learning about them. However I am really annoyed with the following problem: import socket soc = socket.socket(socket.AF_INET) ...
1
vote
1answer
34 views

Which codes should I choose for legal exit from Windows Phone Applications?

I have 7 applications in Windows Phone Marketplace but I have a problem. My dashboard shows me crash reports about my QuitException (I have found it from stackoverflow) for using exiting from my ...
2
votes
1answer
65 views

Disable Cmd-Opt-Escape on fullscreen app

I am using: if (CGCaptureAllDisplays() != kCGErrorSuccess) { To capture the display and secure my app while the user is away, but users have reported, and I have confirmed that pressing simply ...
2
votes
1answer
242 views

Closing embedded object after editing

I'm having some trouble performing a mail merge using an embedded Word file. Essentially I'm trying to build a macro to: Open an embedded Word file (let's say the file is Object(2)) Connect the ...
0
votes
0answers
21 views

I need a solution to closing my web browser in firefox.

Okay, so I have accepted that Firefox will not allow code to directly close it's browser so what I need is adleast a solution. I'm creating an infomative ebook that runs locally off of a usb for a ...
0
votes
0answers
16 views

Quit, List and Start functions in a Java program

I am making a non-GUI game in Java, which runs only in the console and I have to program a Quit and List (prints my history) functions, which could be entered in any time. They should be activated ...
-6
votes
2answers
130 views

Quit app every time you exit iOS [closed]

I want my app to be "restarted" every time I close it. When I open another app or quit the app, and launch it again, it should start at the beginning again. So it's always up to date. Hope you ...
0
votes
0answers
23 views

How can I make the game quit if the player doesn't want to play anymore?

I started working with python only recently. What runs the code is mainly the "def" function. Keep in mind this code is written in python v3.3.0. Also the program is not completely done yet. I might ...
1
vote
1answer
62 views

how to quit matlab gui

I have this callback in my matlab gui that is executed by the menu->Programm->quit. However the handles is empty. function menuProgramQuit_Callback(hObject, eventdata, handles) % hObject handle ...
2
votes
1answer
164 views

Tkinter python quit/exit crash

Im making a GUI and want to add an exit button to close the window. The only problem is, when i add a button with the following code: root = Tk() Exit = Button(root, text = "Quit", command = ...
0
votes
1answer
141 views

Application stays in cache even after quitting in Android Titanium

I have created an application for android and I am facing a critical problem. My application should quit when I press the back button. On pressing back button, I am coming out of the application, but ...
0
votes
2answers
74 views

Python: pygame.QUIT()

Just been messing around with pygame and ran into this error. CODE: import sys import pygame pygame.init() size = width, height = 600, 400 screen = pygame.display.set_mode(size) while 1: ...
-1
votes
1answer
124 views

Difference between wq and x in vi [closed]

I always using :wq to save a file. Today, I came to know that :x can be used to do that. But I didn't notice it in any vi-tutorial or vi-quick-reference. Is there any difference between these two ...
1
vote
1answer
65 views

Despite ReadLine() the program closes

I got a weird problem. I create an object(inside that object i call readline..) then the program quits despite I called ReadLine() at the end. Why it doesn't stop? How to make it stops? using ...
8
votes
3answers
430 views

How to properly quit a program in python

Im a middle school student, and im starting to learn coding in python. I have been watching video tutorials, but i cant seem to figure out how to make the game quit if you type q. here what i have.. ...
0
votes
1answer
107 views

How to stop application quit or run in background till certain process finishes in iphone sdk?

in my application i am doing some synchronization of data from server.I want to stop quiting of application or running app in background till this process finishes.i.e.once this process is started ...
1
vote
1answer
54 views

How to use Apple's handleQuit method?

I made a java application that saves data to a .data file. I have a Window Listener that listens for the application to close in order to fire the code to save the data to the file. When pressing the ...
0
votes
2answers
179 views

Delay super.onbackpressed in android

I made a script which detects if there's internet connection: public static boolean isOnline() { try { InetAddress.getByName("google.hu").isReachable(3); return true; } ...
0
votes
2answers
283 views

Is it possible to quit iOS app after we do some checks

We don't want the user enter our app if the app is out-dated. Is that is possible to quit a iOS app when we do some date check BEFORE the app launch? Or it is possible to quit the application after ...
2
votes
1answer
545 views

QThread finished() connected to deletelater of a QObject

I have thought a lot and read lot of articles before asking this question here. None of the articles gave me a proper answer. ...
-3
votes
3answers
2k views

“Only assignment, call, increment, decrement, and new object expressions can be used as a statement”

I am getting this error in my code for a c# console application case 5: Console.WriteLine("User selected to Quit, option " + response); Environment.Exit; break; // Error Only ...
0
votes
1answer
621 views

How do I quit a qt console application? Are there criterions for the QApplication::quit() slot to work?

I have a weird qt problem: My application doesn't quit in some configurations. The idea is to have a program, which can be started as a program with a GUI (through myWindow) or as a pure console ...
0
votes
1answer
166 views

Bluetooth scanning get force quit randomly

I am new to android and java program. I am try to write a program to remotely control switches via Android HP bluetooth. Everything are fine only my scan for bluetooth function/activity do get ...
2
votes
4answers
508 views

save variables after quitting application?

I want some variables to be saved, when I shut down my app and to load them after opening the app (for statistics in a game) How can I do this? EDIT: Here my code: TextView test1; String punkte = ...
1
vote
1answer
263 views

Error when quitting Excel and Logging Off

I need some help with Excel VBA (2010 on windows 7). What I'm trying to do is close Excel and then shutdown the pc. The code I have is: Declare Function ExitWindowsEx& Lib "User32" (ByVal uFlags ...
2
votes
2answers
521 views

Quit an applescript application after the execution of a shell script

I was wondering if it is possible for an applescript application to run a shell script, then quit before the execution of the shell script is completed. This would be useful when running a server for ...
12
votes
5answers
3k views

IOS Simulator cannot find sdk and the simulated application quit errors

I have been having this Xcode problem for a couple of months where my iOS simulator stops working whenever i run any application on Xcode and says, "The simulated application quit." and "iOS Simulator ...
0
votes
3answers
76 views

Proper way to quit a function in Python

Assume I have the following ; def test(): while 1: a = b time.sleep(60) c = b if(c==a): do something then quit the function What is the ...
0
votes
1answer
281 views

Xcode 4.3.2 crash on build

I'm running Lion (10.7.4) and running Xcode 4.3.2 and when I build any application it crashes on the build. Below is the report. Any suggestions? Application Specific Information: ...
0
votes
3answers
292 views

How to completely quit an android apllication?

I'm facing a similar issue like this one. I'm using some static class members inlcuding singletons in my aplication. When I leave the main activity using finish() and start it again, all static ...
1
vote
1answer
146 views

Remove “Quit” from Mac OS X app’s dock-menu

I am building a Qt application on Mac OS X using Qt-4.7. In my application there is a Dock Menu, I want to remove the “Quit” option from it. How can I achieve this? Please help. Thanks in advance.
0
votes
3answers
256 views

quit the application by setting NSTimer?

is their any better way to quit the application programmatically? recently i made a radio application that have a user setup to set a time using NSTimer for quit the app process ( i mean sleep time). ...
2
votes
0answers
719 views

How to killprocess in Android 4 (Ice Cream Sandwich) so that 'force stop' is grayed out in settings?

I have a 'quit' button in my app. When user quits, I finish() all my acivities on the stack and then call android.os.Process.killProcess() in the base activity such that when the user goes into their ...
0
votes
5answers
598 views

Programmatically stop execution of python script after running condition statement

How do you programmatically stop a python script after a condition sentence has run through. In the pseudo script below: for row in rows: if row.FIRSTDATE == row.SECONDDATE: pass ...
3
votes
4answers
927 views

Best way to quit android app?

I'm looking for a way to quit my android app by code. Yes, I know, I shouldn't be doing this cause android handles it when you press the back button, but I have a customized flow that forces me to ...
0
votes
1answer
52 views

Strange issue when closing a PyGTK application

I encounter a strange issue when closing a PyGTK application. This is the function used to quit the program: def quit(self, obj=None, event=None): gtk.main_quit() os._exit(0) When ...
1
vote
1answer
1k views

openssl hangs and does not exit

I am trying to use openssl to get a certificate, and it seems to keep hanging. I have done a lot of research but not all of the available options seem to work on Windows. openssl s_client -showcerts ...
1
vote
2answers
639 views

iOS - detect when application exits

How can I detect when a user exits the application? (hitting the home button) And how can I detect when the relaunch it? (clicking the icon) *I'm not talking about users manually quitting the app by ...
0
votes
1answer
383 views

How to design a .net windows form application that never quit when user log out of Remote Desktop connection

I am quite new to windows form app development. I have an app installed on a remote IIS server, this app is an agent that check and process job queue every 10 minutes. But if I click "Start" - "Log ...

1 2 3