0
votes
2answers
25 views

vb.net Program not closing

So this is my code in a Function of a Module. I'd like to close the program where I call Application.Exit, but it keeps running. Is there a good reason for that? Dim OpenFileDialog1 As New ...
0
votes
1answer
68 views

C# Background worker: exception when Close() is called [duplicate]

I have two background workers in my application that fill up a table and send log messages. They transmit these data using the "userState" of the ReportProgress method. They are connected to the main ...
1
vote
1answer
206 views

Java Application hangs on Windows Shutdown

I have this whole code. My Application hangs up after the windows is force shutdown then cancel. application running... >> windows force shutdown >> cancel >> back to windows ...
4
votes
3answers
342 views

How to properly exit a c# application?

I have a published application in C#. The problem here is whenever I close the main form by clicking on the red exit button, it closes the form but it doesn't close the application. I found this out ...
0
votes
3answers
2k views

Exit/Finish an app/activity - android

I've got 4 activities say Act1, Act2, Act3 and Act4. A button in Act1 opens Act2, a button in Act2 opens Act3, a button in Act3 opens Act4. I want two things to be done: I've a button in Act4 which ...
0
votes
0answers
45 views

ipython - prevent from exiting when error is encountered

Is there a way to prevent ipython from closing when an error is encountered? I have used ipython on a previous machine where it would not close automatically. Thanks.
0
votes
2answers
378 views

C# in Windows Application Closing or Exit

When I click the X (windows close button on corner top right) is application.exit or this.close run implicitly ? because everytime that I change my programme and compile it, it cannot be compiled ...
1
vote
2answers
639 views

iOS - detect when application exits

How can I detect when a user exits the application? (hitting the home button) And how can I detect when the relaunch it? (clicking the icon) *I'm not talking about users manually quitting the app by ...
0
votes
1answer
2k views

Android, Closing the application by using: android.os.Process.killProcess(android.os.Process.myPid());

In my project i need to close app anyway (I know its not suggested by Android but my customer needs it). Mostly when we close app by normal way (pressing home button), when you press and hold home ...
-1
votes
1answer
432 views

Windows phone: close the app after click on a button

how can i close my app after a button click? i mean in: private void chiudi_app(object sender, RoutedEventArgs e){ } i've tried a lot of things founded around the web (like ...
1
vote
4answers
973 views

Intercept WM_CLOSE for cleanup operations

I have an external application that calls my application and is supposed to end it when the job is done. The log from this external application claims it uses WM_CLOSE on my app. How can I intercept ...
0
votes
2answers
453 views

WPF app does not execute Application_Exit method when user closes main window

I have a WPF/C# 4.0 App wich Application file XAML is: <Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ...
0
votes
2answers
1k views

My Visual FoxPro application appears to close… but is still running in the Task Manager

My FoxPro program has a quit button and the usual min/max/X buttons in the top right, and when using either the program disappears and seems to have closed properly. However, when I check my Task ...
1
vote
1answer
238 views

Console onExit events using F#

I would like to have a certain function executed when a console application exits. I have found many solutions but none of them work for me. Why the following code does not display CancelKeyPress etc? ...
2
votes
3answers
3k views

Double confirmation on exit

I am trying to make it so that the user is prompted to confirm exiting my program in c#, but for some reason, if they say "yes" they would like to exit, the confirmation box would pop up again. I ...
5
votes
3answers
2k views

C# close to tray (like msn messenger)

I have a c# .net app. So I created a notifyIcon that sits in the tray. What I want to do is when the user hits the "x" button on the form, I want it to close to the tray. They should only be able 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 ...
1
vote
5answers
4k views

wpf exit thread automatically when application closes

I have a main wpf window and one of its controls is a user control that I have created. this user control is an analog clock and contains a thread that update hour, minute and second hands. Initially ...