0
votes
1answer
36 views

Windows Store App/Metro on closed/suspend event does not work

I have this game I'm making which involves two online players. If one quits the application, the other should be notified. I'm using the onsuspend event but it's not working. Here's my code: ...
2
votes
2answers
97 views

Exiting pygame window on click

Making my first post here (or frankly any forum), but I was wondering why I can't exit on when the window's exit button [x] has been pressed. I have tried: #print "Exit value ", pygame.QUIT for et in ...
0
votes
2answers
290 views

Preventing application exit in TideSDK

I am trying to prevent the user from closing the window when they click on the close button. I would like to have the application dock to the system tray. My first step is to recognize when the user ...
1
vote
1answer
157 views

App termination event for cleaning up resources

Here's the deal: I'm building a mobile app with Appcelerator Titanium. It will be deployed to iOS and Android devices. I use the Titanium.Database module to cache incoming data that the app ...
0
votes
2answers
344 views

C#: inner workings: events, Control.BeginInvoke and program exiting = Interruption?

I'm creating a program with several projects and some projects report back to the main project messages for logging purposes. Since i am using Asynch sockets, some of these messages come back in ...
2
votes
1answer
435 views

Handle a MonoMac Exit/Window Close Event

Similar to this question I posted earlier: Handle a WPF Exit Event I found a solution in Objective C, but I'm not familiar with how to port this with Mono. EDIT I found that I could use the ...
5
votes
1answer
4k views

Handle a WPF Exit Event

I was wondering if there was a way to handle a WPF Application Exit event such that the exit was cancelled. The use case is that I have a client-server situation where the server is a WPF app. I want ...
1
vote
2answers
118 views

Java - catch PC is turning off event, or equivalent

I created a software which edits some XML files. When a file is opened a lock file is generated to avoid having multiple users editing the file at the same moment. I would like now to be able to ...
0
votes
3answers
975 views

Dispatch keyDown to TabActivity

In my application I have 4 tabs in my TabActivity I want a user confirmation dialog popup when user exits my application. I have overridden the onKeyDown event of TabActivity and coded my ...
1
vote
1answer
2k views

Capture console exit C# in windows 7

Does anyone know how to react to the ctrl+c event in a console in c# in windows? this question: Capture console exit C# says how to do it, but I've tried and it only captures the event when the user ...
2
votes
1answer
535 views

Catching the exit event of a simple console application

I have this simple console application in Delphi 2010 and I would like it to do something (run a piece of code) when I press the "X" button (when I close it), however I can't seem to find how to ...
0
votes
2answers
681 views

Close browser/Exit from website Events

Nowadays I am creating browser game, using ASPX, CSS and AJAX. I need to know when the user close the browser or exit from website, because of these cases for example: if a player opens a game room ...
2
votes
2answers
940 views

Why isn't my WPF closing event being fired for system closes?

I have the following line in my Window stanza in the XAML file: Closing="Window_Closing" I originally thought that the web page here assured me that this event fires when you use the big X ...
1
vote
1answer
229 views

what is the Flash event listener when flash is exiting?

anybody knows how to make event listener for flash exiting? By mean exiting is when a tag that hold the flash object is removed so that you cant see the flash anymore... Thanks
3
votes
2answers
3k views

Does Application.ApplicationExit event work to be notified of exit in non-Winforms apps?

Our code library needs to be notified when the application is exiting. So we have subscribed to the System.Window.Forms.Application.ApplicationExit event. This works nicely for Winforms apps, but ...
28
votes
5answers
21k views

Capture console exit C#

I have a console application that contains quite a lot of threads. There are threads that monitor certain conditions and terminate the program if they are true. This termination can happen at any ...