Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
24answers
2k views

What, if any, documentation should be written before quitting a job?

I'm involved in a project where it's in a state that works well for the client, but ultimately needs a lot of intricate supplementary work for future success. If I left tomorrow, the other developers ...
10
votes
7answers
7k views

Close a WP7 application programatically? [closed]

Possible Duplicate: Windows Phone 7 close application How do I programatically close a WP7 application?
7
votes
4answers
798 views

How to run one last function before getting killed in Python?

Is there any way to run one last command before a running Python script is stopped by being killed by some other script, keyboard interrupt etc. Thanks for your help!
5
votes
4answers
432 views

Is there a method that tells my program to quit?

For the "q" (quit) option in my program menu, I have the following code: elif choice == "q": print() That worked all right until I put it in an infinite loop, which kept printing blank lines. ...
3
votes
3answers
457 views

HP WebOS 3.0 Emulator, how to navigate

does any know how i can exit a program in HP webOS 3.0 Emulator. There isn't any home button and i can not find answer anywhere with google. Thanks
3
votes
2answers
586 views

I keep getting QUIT and CONNECT HTTP methods sent to my server, what do they mean?

I keep getting the two following errors from my server, I assumed they were just bots looking for potential targets, but does anyone know specifically why I'm getting these? I'm using the ...
3
votes
3answers
2k views

How to quit an iPhone app nicely?

or "How to simulate a home button pressed event?" I need to restart my iPhone app, and I want the program to quit, so the user will only have to start it. If I simply use exit(0) some changes won't ...
2
votes
1answer
73 views

QT app stays in memory even after MainWindow is closed

The problem is as follows: if the application is closed while it's not actively doing anything, it exits correctly. If it's actively working on something (waiting in a while loop, for example), ...
2
votes
2answers
120 views

Correct way to quit a Qt program?

How should I quit a Qt Program, e.g when loading a data file, and discovered file corruption, and user need to quit this app or re-initiate data file? Should I: call exit (EXIT_FAILURE) call ...
2
votes
1answer
200 views

Force application to front

The question I'm about to ask may seem dangerous for the user, so here's the story before the question: I'm working in a compagny that tries to sell Galaxy Tabs to schools (children under 10). So, ...
2
votes
1answer
1k views

How to abort an interactive rebase if --abort doesn't work?

I've got myself into a muddle via an interactive rebase, and I now wish to abort it. (i.e. go back to the point before I was dropped into interactive rebase mode, in my case via git pull --rebase.) ...
2
votes
2answers
1k views

Forcing an iPhone app to quit when Home button is pressed (on iOS4)

I do not want my app to switch to the "task bar" when the Home button is pressed. That's why I would like it to be closed upon Home press. I added this entry to the info.plist file but this does not ...
2
votes
0answers
1k views

how to disable gps lookup in android again [closed]

How am i able to Stop GPS from receiving new signals? was searching for it, just use: if u initialize a LocationsManager Object mLocationManager_ = (LocationManager) ...
2
votes
6answers
755 views

Exiting from C++ Console Program

I currently have a program which has the following basic structure main function -- displays menu options to user -- validates user input by passing it to a second function (input_validator) -- ...
2
votes
1answer
461 views

IWebBrowser2 Quit method fails with a E_FAIL result

I am hosting the web browser control in my own window. Here are the pertinent steps: CoGetClassObject(CLSID_WebBrowser, CLSCTX_INPROC_SERVER | CLSCTX_INPROC_HANDLER, ...
2
votes
1answer
1k views

Quitting matplotlib.pyplot animation gracefully

I have a script that plots data of some photometry apertures, and I want to plot them in an xy plot. I am using matplotlib.pyplot with python 2.5. The input data is stored in around 500 files and ...
2
votes
2answers
931 views

Launchd Relaunch App on Quit

I am wondering how to set Launchd to relaunch my app if the user has not chosen to choose "Quit" from the top bar. There are cases where something may happen to the app, and it may force quit, and if ...
1
vote
1answer
44 views

How do you leave a team when a member of multiple teams on iPhone Developer Program [closed]

I'm a member of multiple developer teams on my iPhone developer account, some of them are old contracting arrangements that are no longer relevant. I haven't been kicked off, and I can't find a way to ...
1
vote
3answers
96 views

Is there a difference between .quit and .exit in sqlite?

I am writing a vbscript to exceute a sql query in the sqlite shell and was wondering if I needed to use .quit or .exit. When I set up a task in the task scheduler to run this vbscript, the sqlite ...
1
vote
2answers
77 views

How to quit a pygtk application after last window is closed/destroyed

Is there a way I can tell gtk to automatically call gtk.main_quit() when the last open window of the application is closed/destroyed? If there is no direct feature offering this functionality, I ...
1
vote
3answers
236 views

What is the correct way to programmatically quit an MFC application?

Using windows MFC C++. I have a third party app that calls a user-defined method in my CWinApp derived class. This method is called after InitInstance(). If there is an error in this method, such ...
1
vote
0answers
139 views

Debugging SHDocVw.InternetExplorer.Quit not closing iexplore.exe process

I think there's no definite answer so how would you approach debugging this problem?: My main app (a MicroStation plugin) launces IE using the SHDocVw.InternetExplorer COM wrapper, interacts with it, ...
1
vote
4answers
109 views

How to quit a java program at a specific time

I have a JMS listener app, and the class QueueReceive implements MessageListener.the main function as below: public static void main(String[] args) throws Exception { InitialContext ic = ...
1
vote
1answer
192 views

No Application Quit event in Outlook?

I'm using the 12.0 Interop library, which is the default for Outlook 2007. I'm actually aiming for Outlook 2003 to 2010 integration with a code example that registers to a quit event. Even though the ...
1
vote
2answers
188 views

Windows Phone 7 XNA game quits on load, no error messages

I'm trying to get a Windows Phone 7 XNA game to run in the emulator, however it simply quits after calling the Game.Initialize function. The only output it gives is: A first chance exception of ...
1
vote
3answers
2k views

How to exit from an android app?

I've just read that you can exit an android application by simply calling: finish(); However this is not the case! When I do this I get the following errors: PackageInstallationReciever Remove ...
1
vote
1answer
357 views

Invalidating session before iPhone application quits

I would like to tell the server to invalidate an ongoing session when the user quits the iPhone application. In the app delegate, I send a request to the server in the ...
1
vote
4answers
402 views

Quiting a PHP script within another PHP page

I'm trying to implement caching for a PHP script I'm writing, but I keep running into the following problem. I want the script to be included in other PHP pages, but when I try to pass the cached ...
0
votes
1answer
30 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 ...
0
votes
2answers
64 views

cocoa how to block the “Quit” menu item on dock menu

my dock menu always be added "Quit" and other 2 menu items automatically, how may I block / modify them? updated: really NO way to delete/block/redirect the "Quit" menu item. used Peter's ...
0
votes
2answers
76 views

Java - Handle Program Termination

I have a server - client pair written in java and I would like to quit one application if the other one is quit. How is this done? I would also like to know how to make the program do a sequence of ...
0
votes
2answers
67 views

PHP script stops on str_getcsv with no error

Newbie here with a frustrating, but probably simple question. I am trying to write a script that will get the last line of a .csv with 2 columns. I only need the value in the second column to do a ...
0
votes
0answers
39 views

c# interop PowerPoint Quit blocks app on some machines

This is not related to Interop leaing apps after quit on the task manager - i already solved that issue with Marshal and GC. I am making an application that connects to word, excel and powerpoint ...
0
votes
1answer
99 views

C++/SDL game quits without fail after about 10 seconds

I am programming a game. Without fail, the program will cleanly close after about 10 seconds. I thought it was a problem with my state machine but when I change the GAME_CLOSED event to just restart ...
0
votes
1answer
139 views

How do I make my iOS app reset when the user clicks the home button?

I have an animation based timer app that does not reset when I exit the app. I need to click the home button, then quit the app and re-launch it to get the timer to reset. How do I tell the app to ...
0
votes
2answers
165 views

iOS App crashes on exit, how to debug?

My app crashes when I quit it(not press home button and go to background), I guess the problem is that some objects released in viewDidUnload, are released again in dealloc, but I'm not sure. As my ...
0
votes
3answers
496 views

AS3.0 Quit the flash player [closed]

Possible Duplicate: AS3.0 Replay the whole movie (*SWF file) I made a small game in Actionscript 3.0 and flash. When the player wins the game or is 'game over' my player should have 2 ...
0
votes
1answer
379 views

How do I trap SIGQUIT properly in a bash script?

I can write shell scripts that trap SIGINT just fine, but I can't seem to trap SIGQUIT. #!/bin/bash function die { echo "Dying on signal $1" exit 0 } trap 'die "SIGINT"' SIGINT trap 'die ...
0
votes
1answer
193 views

close the firefox application (alt + F4 or close button)

I would like to know when a user is about to close the firefox application (alt + F4 or close button). I have tried onbeforeunload , it works but only when the user presses File>>exit. I have written ...
0
votes
1answer
159 views

NSAlertPanel not working when Application is quitting

Im trying to allow the user to decide whether to quit the application or not and Ive been trying to implement it using this: - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication ...
0
votes
1answer
357 views

Force quit when I push back button

I'm having difficulty debugging a force quit issue. In the code below you can see that I navigate to a new activity using Intent. However, when I push the back button on the android device, I get a ...
0
votes
2answers
38 views

Recently created an app in Xcode and it runs fine on my computer. Sent the .app to a friend, he cannot run it

Any suggestions as to why the app will launch and quickly disappear from the dock? It's a very small app with about 80 lines of code and no outside API's, libraries, or dependencies. A simple ...
0
votes
0answers
177 views

Ftp linux problem - hangs after quit

I am using an external ftp server to get some files, and my program hangs when closing the server only in one of the environments. I checked it manuelly connecting to the ftp server with the console, ...
0
votes
0answers
67 views

dont quit current application

here is my code. It is for MAC OS NSArray *myrunningapps = [[NSArray alloc] init]; myrunningapps = [currentworkspace runningApplications]; NSLog(@"array has %i values",[myrunningapps count]); ...
0
votes
3answers
361 views

does dealloc method being executed normally when quitting the application?

I use code like the following (inside my appController.m for example) to do some cleanup when my application terminates... - (void) dealloc { [myObject release]; // myObject 's dealloc will not ...
0
votes
1answer
533 views

Excel - timer to close workbook

Quite a while ago I whipped up (or found) some code to automatically close a shared workbook after a period if the user had left it open (e.g. overnight or all day). The code works well, except for ...
0
votes
3answers
263 views

applicationWillTerminate and the dock but wanting to cancel this action

I have some separate threads going in my application that need to be torn down correctly. IF the user selects the quit menu item in file menu I throw up an error that says... please stop the other ...
0
votes
1answer
382 views

Quit an application using applescript

Whenever i try to quit an application using applescript i get the following error -- An error of type -9874 has occurred. The applescript command which i am using is tell application "app_name" ...
0
votes
2answers
606 views

PyQt: How can I quit a QDialog?

I've build a QDialog Widget. My problem is, I can't quit the QDialog. If I press one of the buttons, then the QDialog is only set to "hide". Here is a little part of the code. It is executable. I ...
0
votes
1answer
667 views

Clean up QThread after calling quit()

I have a problem. If I call Abort(), run function will return without complexMath instance have enough time to do clean up. What i want is, after calling Abort(), complexMath instance have enough ...

1 2