0
votes
7answers
143 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
35 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
48 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
87 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
83 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
256 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
91 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
100 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
179 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
109 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
228 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 …
1
vote
4answers
310 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 …
0
votes
2answers
103 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
635 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 …
