Questions tagged [quit]
156 questions
0
votes
1 answer
killing specific process with vbscript
i have a code to login to a site every 15 minutes (set to five seconds for testing) in google chrome. It needs to be logged in in order for me to use internet. in its current form, every fifteen minutes it opens another chrome browser and logs in…
0
votes
1 answer
Can't quit while running long Popen command
I am running the below code which runs a command line application which runs for about 40 mins. While this is running my QUIT button is not accessible so I am unable to quit the running application. The below code and the button are both seated in…

speedyrazor
- 3,127
- 7
- 33
- 51
0
votes
1 answer
While Loops? Need Help Running New Program- Python
Okay, well for my job I have always used C++, but now they are wanting me to switch to Python. So over the weekend I have been making very simple programs to get used to the new system. I'm having trouble though with this program:
demand =…

user3290172
- 3
- 1
0
votes
1 answer
Android issue when starting activity
Hello I have a small problem with my app.
The starting activity connects to the sqlite database and retrieves an integer number that will check latter if it's 0, 1 or 2. Depending on the number, it will then open the respective activity.
final…

user3241659
- 21
- 3
0
votes
2 answers
quiting a c# application leaves it in memory
I'm using c# to write a windows form which installs and deploys WSPs to a sharepoint server.
The problem I am having is that when I detect a problem and quit the application or when the cross in the top right of the form is pressed the form closes…

Nath
- 203
- 4
- 17
0
votes
4 answers
Problems enabling a quit function in Python
I'm pretty new to programming in general and I'm creating a small game for my younger sister...
I have a while loop in which I want to have an option to quit the game, but none of the quitting techniques I know of seem to work:
#main game:
while 1:
…
Jasper
0
votes
1 answer
tmux bind-key to kill all or maybe a grouping of windows/panels
I've created a script that opens up tmux and splits into 4 windows/panels, but i was wondering if theres a quick way to exit them all, preferably via a key binding.
Thanks.
[Edit]
What i'm looking for is a way to exit a selection of windows via a…

stilliard
- 762
- 8
- 27
0
votes
1 answer
How do I quit a window in tkinter without quitting program?
I would like the second 'Enter' button to allow the user to quit from this window. What is the command? I believe self.quit quits everything but the command I've used doesn't work.
import tkinter as tk
class Enter_Name_Window(tk.Toplevel):
'''A…

user3056786
- 89
- 2
- 10
0
votes
1 answer
How come my program does not quit?
Alright, so I've tried this for a while now and I can't seem to find a way to close the program once it is running.
What I want it to do is to end the program if the user chooses 'no':
elif y == 'n' or 'no':
sys.exit(0)
However whatever I…

Rezic
- 99
- 1
- 6
- 12
0
votes
1 answer
Quit Android app in titanium appcelerator?
I want quit the Android app suppose my app having quit button when i click on that button i need to close the all app data and navigate to Mobile home screen for that i am writing the code to close to current activity
var activity =…

satya
- 11
- 1
- 3
0
votes
1 answer
Tkinter window to be shut and control flow to be returned automatically
I have an external script that calls the drawWorld() function of this class.
I want the drawing to be shown for 1-2 seconds and then to close and the control to return to the main script.
I can manage to let the window disappear with the…

Alvin
- 383
- 5
- 16
0
votes
1 answer
c# interop winword.exe doesn't Quit()!
I feed multiple docs to the below method and see winword.exe disapear as expected on over 15 diferente PCs running WinXP 32bit to Win8 64bit having Office 2000 onwards. On 1 nightmare PC that has Trend's Antivírus running, winword.exe (Always, every…

Aleksander Spacca
- 13
- 3
0
votes
4 answers
Quit item menu in Android application?
This is a way to close an application using a button:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button btn1 = (Button) findViewById(R.id.btn1);
…

David_D
- 1,404
- 4
- 31
- 65
0
votes
2 answers
how to delay application quit time in iphone sdk?
I want to register my app for push notification when my application terminates so i think if i delay my app quitting time it could be possible.Does someone knows how to delay application quitting time? I think this method
[self…

Rahul Vyas
- 28,260
- 49
- 182
- 256
0
votes
1 answer
How do I exit a Qt script if a condition is met?
I want to do something like
if(x == 0){
quit() ;
}
is there a way to do this in a Qt Script?

user2638685
- 1
- 2