Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
168 views

How do I write an exit handler for an F# application?

Subject says it all. I want some code to run if my application is terminated by, say, ^C.
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 ...
1
vote
4answers
717 views

Shut down a ATL application cleanly

I am a complete newbie to C++ so bear with me ;-) I have developed a console ATL application and want to trap the close?, exit?, terminate? event so that I can close log files and perform a general ...