4
votes
2answers
232 views
Terminating an application programmatically using a file path in vb.net
I want to terminate an application using the full file path via vb.net, yet I could not find it under Process. I was hoping for an easy Process.Stop(filepath), like with Process.Start, but no such …
3
votes
3answers
180 views
Terminating Another App Running - Cocoa
Hey all,
How can I terminate another app that is running in cooca. Let's say I have iTunes running, and I type in quit in my app, it would quit itunes. "iTunes" is just an example, it could be …
3
votes
6answers
354 views
Why does .exe refuse to stop?
Hi there,
I've "inherited" a legacy C#/C++ program that I have to debug. The current problem is that the .exe won't stop after I close the program, i.e. it still shows up in Task Manager.
This is a …
2
votes
4answers
294 views
What is the correct way for a program to terminate its own process (Windows)
C# .NET 3.5
I have a console application that is being called by another application on the computer. This console app runs continuously, and listens for data on stdin from the "parent" process.
…
2
votes
2answers
312 views
When is a C++ terminate handler the Right Thing(TM)?
The C++ standard provides the std::set_terminate function which lets you specify what function std::terminate should actually call. std::terminate should only get called in dire circumstances, and …
2
votes
2answers
366 views
How can I end a Lua thread cleanly?
My situation is that I'm using the Lua (C) API to execute a script held in a string.
I would like the user to be able to terminate the execution of the script (this is essential if the script contains …
2
votes
3answers
2k views
How to terminate script’s process tree in Cygwin bash from bash script
I have a Cygwin bash script that I need to watch and terminate under certain conditions - specifically, after a certain file has been created. I'm having difficulty figuring out how exactly to …
1
vote
2answers
636 views
delphi - terminate all the threads (TThread) on closing application
My application is a tcp/ip server, with main thread created only once & listening all the time. When new client connects, the main thread creates the new thread of TClientThread type. There is …
1
vote
3answers
528 views
Terminate a process tree (C for Windows)
This has been asked before but I can't find a definitive answer, in code.
I open a process, ProcessA (with PID 1234). This process opens a child process, ProcessAB (PID 5678).
After I'm done I …
1
vote
4answers
311 views
Mac OS X equivalent for TerminateProcess(GetCurrentProcess,0);
I am looking for a simple and uncatchable way to terminate the Mac port of my C++ application. In Windows I was using
TerminateProcess(GetCurrentProcess, 0);
What's the equivalent command I can use …
1
vote
10answers
426 views
What are the trade-offs between languages that terminate statements with semicolons and those that don’t?? [closed]
Are there any benefits to languages that terminate statements with a semicolon (C, Perl, etc.) compared with those that don't (Python, Ruby, etc.), or vice versa?
(Note to late-comers: the original …
0
votes
7answers
145 views
force application to terminate in iPhone
I am developing an iPhone application which is completely based on web data.
If it is not connected to internet, application is for no use.
So, I want to terminate application when connection not …
0
votes
4answers
36 views
Adding An AlertView At viewWillAppear, iPhone
Hello all,
I am attempting to show an alert view as soon as the view appears (without using a button). In viewcontroller.m I have:
- (void) viewWillAppear:(BOOL)animated
{
UIAlertView *alert = …
0
votes
4answers
50 views
VB.NET Application does not fully close
Hey guys,
When I launch my application, and press the "X" button on my app, or my quit button which deploys: me.close It will not fully close the application. Like the instance is still running in …
0
votes
1answer
91 views
Cross-platform way to terminate a process in python…
When I try to kill a process in windows with the subprocess.Popen.terminate() or kill() commands, I get an access denied error. I really need a cross-platform way to terminate the process if the file …
