1
vote
1answer
26 views

TargetParameterCountException on Application.Exit

I am trying to close my C# Form application from a different thread than the main thread. I always get this error: 'System.Reflection.TargetParameterCountException' occurred in mscorlib.dll on the ...
0
votes
3answers
76 views

Android - Prevent user from closing app

I've an android application that will be used in a restaurant, so I want that users can't exit from the app. The only thing that users can, is using application. (If possible only admin can exit from ...
0
votes
0answers
51 views

Close a Process when main application exits or crashes in Mono

I have a Mono c# application (App1) that launches a native application (App2) using Process and Process Start Info. Everything runs smooth but I would like to have some kind of handler, event or ...
0
votes
2answers
985 views

exit application when click button - iOS [duplicate]

Possible Duplicate: Exit application in iOS 4.0 I have a AlertView which displays some text and a "OK" button. if user press ok button then app need to exit. Is there any way to exit ...
4
votes
3answers
324 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 ...
1
vote
2answers
145 views

When I develop an Android application ,how to exit this application?

When I develop an Android application, how to exit this application? I try anything what I can do ,but I can't exit my application what I am developing. How to do this ? Any idea? This my solution ...
0
votes
3answers
101 views

How to make an ipad app impossible to close

I am programming an app for an experiment by the University of Queensland Psych Department. The app needs to be impossible to exit, or at least it would be preferable if it were impossible to exit. ...
0
votes
2answers
183 views

Windows form application can't be closed normally

I have problem when closing the windows form application. I need to know is it always called private void Form1_FormClosing(object sender, FormClosingEventArgs e) if I press X button on the form and ...
1
vote
1answer
259 views

Restarting Application after Updater on Qt

After a successful update, I am using the following logic to restart the application: QString appName = QApplication::instance()->applicationName(); QString appDir = ...
1
vote
2answers
629 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
2answers
448 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" ...
1
vote
6answers
2k views

Android exit application

it's not recommended to exit application directly, so the point is to finish all activities so everything goes to the background and user returns to the home screen. My problem is that I have main ...
0
votes
2answers
2k views

How can i check if my app is running

How can i check if my android app is already running to prevent double launch? How can i make "hard exit" to prevent my app running on background?
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 ...
2
votes
3answers
961 views

VB 6 crash on exit

I have a legacy vb6 app that crashes on exit - both as an executable and in the IDE. How can I avoid the crash? I am currently unloading the forms (except the frmmain) in form_unload, releasing all ...
7
votes
4answers
660 views

C: Doing something when the program exits

In C, if my application ends unexpectedly can I call a function before that happens? I'm writing a flag into a database (processRunning = 1) that prevents other applications from starting a similar ...
5
votes
2answers
3k views

is there an Application::onDestroy() equivalent for Android?

Hi I am using the Application::onCreate to put my initialisation code of my app, but when waiting some time and starting other apps, I noticed the instance of the Application class gets created ...
27
votes
3answers
24k views

c# listen for key press in console app

How can I continue to run my console application until a key press eg "esc" is pressed? Im assuming its wrapped around a while loop. I don't like readkey as it pauses and asked for the key rather than ...
1
vote
2answers
627 views

C# Console App, slow to exit

I have a very basic C# console app that connects to a db, executes a query, closes the connection, and exits out of the app. The problem is, the app takes almost 3 seconds to exit. I have displayed ...
3
votes
1answer
6k views

Android - How to exit an app when user press the home button?

I want to know how to exit an app when user press the Home Button. As far as i know that Home Button moves the running app in background and puts Launcher process in front. I know i can use finish() ...
1
vote
4answers
4k views

How to exit or quit android application?

I have created an sample application for android and tested it in my htc android mobile. I want to know how to exit the application? can anyone give me sample code? thank you.
0
votes
4answers
702 views

Exiting c# app from splash screen

I am using a splash screen for a c# which runs on startup and checks the app license. I show the splash from the main form like this: public partial class Form1 : Form { static bool stopThreads ...
0
votes
3answers
503 views

Application.Run() leads to application hanging

When I start application without specific form e.g. Application.Run(); And then I create form, after user closes it, the process just hangs. This happens outside of Visual Studio. I tried to put ...
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 ...
1
vote
0answers
1k views

C# Console application - How to tell when an application is closing?

So i have a program that needs to do some cleanup before it exits, even if it is a forced exit. I know, hitting the power button is a forced exit where no cleanup can happen, but that would cause ...
1
vote
4answers
752 views

iPhone: What is the correct way to leave an Application?

Hallo Everyone, with the iOS 4, the iPhone is supporting Multitasking, what is very nice, but something I do not wish to support in my Application. I mean, when the user press the Home-button, I want ...
0
votes
6answers
626 views

forbid exit from iphone/ipad application

is it possible and how to implement forbiden exit from application on iphone/ipad? we have an application that must permanently work on ipad device. user should not have any way to exit from ...
0
votes
2answers
1k views

ExitInstance not called in MFC app

Until now, I never really needed the Winapp ExitInstance() of a large MFC (Single Document Interface if it matters) app I'm working on. But now I do, mainly to cleanup memory alocations, unload some ...
1
vote
0answers
720 views

call a webservice in the Application_Exit workaround issue AsyncCall

I am facing the issue in updating the Database during a browser close in the Application_Exit method. Since I cannot call a webmethod in this event to updated the DB, I'm trying for a workaround ...
0
votes
1answer
177 views

C# What is the sense of Application.Exit Method?

I'm asking this question, because I can't figure out when I could find an use of this method. If I've designed everything correctly then I should be able by the medium of normal returns and try catch ...
0
votes
3answers
3k views

wpf cancel backgroundworker on application exits

In my application I have a main windows and into it, in a frame I load a page. This page do a long time task when the user press a button. My problem is that when long task is being doing and the user ...
21
votes
2answers
9k views

How can I tell my Cocoa application to quit from within the application itself?

I'm looking for a good way to tell my Cocoa application to quit itself. Rest assured that this will not be used for production code. I'm just looking for an easy way to run one test and then close the ...
0
votes
1answer
531 views

Disabling screen minimization animation effect in iPhone:

Is it possible to disable the home screen minimize animation effect when user presses the home button on iPhone?. Or can we set our own custom image for minimize animation? Regards ypk