1
vote
5answers
135 views
Termination scenario in C#
I want to execute some code (clear up resoucrse) on termination my WinFormsApplication using Windows TaskManager. How can I do it? I am terminating my application using Process Tab of TaskManager.
0
votes
2answers
44 views
iPhone Core Data application will terminate save database required?
Hello,
I have an application that allows you to edit some percentages, however it will only let you commit those changes if the percentages add up to 100. However because the Core Data template …
0
votes
4answers
64 views
C#: Handling terminate signal in TCP handler thread?
I am using the TcpClient class in C#.
Each time there is a new tcp connection request, the usual practice is to create a new thread to handle it. And it should be possible for the main thread to …
0
votes
1answer
41 views
Terminating and Starting Data Connection on Windows Mobile 6.5 in C#?
Heys Guys!
Just got a rather annoyingly akward question :S
I want to create an easy application for windows mobile devices, i have recently got a HTC HD2 and the connection is being eaten by the …
0
votes
7answers
192 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
49 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
70 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
111 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
105 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
89 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
311 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 …
3
votes
3answers
196 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
112 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 …
4
votes
2answers
280 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
120 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 …
