0
votes
4answers
46 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
82 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 …
0
votes
2answers
90 views
How do I destroy a Window correctly?
I'm programming a little game, and I set the lpfnWndProc to DefWindowProc
and after that, I made a loop in that way:
MSG lastMessage;
while (true)
{
if (PeekMessage(
&lastMessage,
…
0
votes
2answers
79 views
Eclipse : How to terminate all applications at once?
Hi,
is there some way to terminate all (Java) applications launched with Eclipse at once?
br, Touko
0
votes
5answers
236 views
How to properly stop a multi-threaded .NET windows service?
I have a windows service written in C# that creates a truck load of threads and makes many network connections (WMI, SNMP, simple TCP, http). When attempting to stop the windows service using the …
0
votes
2answers
88 views
Xcode NSRunningApplication Terminate
Hey Everyone,
I have this code:
NSWorkspace *sharedWorkspace = [NSWorkspace sharedWorkspace];
NSString *appPath = [sharedWorkspace fullPathForApplication:appName];
NSString *identifier = [[NSBundle …
0
votes
2answers
99 views
NSRunningApplication - Terminate
How would I use NSRunningApplication? I have something opposite of that which is launching an app:
[[NSWorkspace sharedWorkspace] launchApplication:appName];
but I want to close one. I get an error …
3
votes
3answers
173 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 …
0
votes
2answers
102 views
Knowing when all threads complete and dealing with exceptions
Hi,
I am using the Executor framework to kick off several threads using a threadpool i.e newFixedThreadPool. I use threadpool.submit(aThread) to submit jobs to be executed by the threadpool and this …
4
votes
2answers
214 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 …
0
votes
2answers
102 views
How to end an animation early in Cocoa Touch?
I have a UINavigationController onto which I push a 'loading screen' UIViewController whilst I asynchronously connect to a server. The push is implicitly animated with that sliding effect. If an …
1
vote
2answers
615 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 …
2
votes
4answers
282 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.
…
1
vote
3answers
502 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 …
2
votes
2answers
310 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 …
