Tagged Questions
1
vote
3answers
59 views
C# WinForms login dialog close everything
I'm trying to make an simple application in C# using Windows Forms.
My program requires the user to login. I've got the following code in the main form ( Form1 ):
public partial class Form1 : Form
{
...
0
votes
0answers
47 views
Gracefully “disposing” the original form while calling another form in MSVC++ Winforms
I am developing a small program that has two Forms. One Form, "mainForm", runs and checks the version number of the program to make sure it is up-to-date. Once the check is done, the form show a ...
0
votes
1answer
479 views
How to close a powershell gui windows form after the button is clicked?
i have a script which created a small windows gui form with buttons depending on the scenarios;
-> on clicking, these buttons open respective files on remote file shares;following is the code;
...
0
votes
4answers
636 views
How to exit c# program
Class A has a Form1 (subclass of System.Windows.Forms.Form) member.
class A {
Form1 form;
public A()
{
form = new Form1();
form.Show();
}
}
...
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 ...
2
votes
3answers
457 views
GUI Winform and ending /killing process
I have a c# GUI app and it's running a bunch of command line process one after another. How do I end/kill the app while the command line process is running?
I have an Exit button (button 3) but it's ...
1
vote
2answers
523 views
C# On keypress - exit program
My program opens a series of forms all over the screen, am I able to code in an escape method, so on typing of the word "test" the program will close?
I was looking at the msdn keypress and how they ...
4
votes
5answers
966 views
App.Exit does not exit immediately?
I assumed that Application.Exit causes app to exit imemdiately but I can see that according to example below, it will exit after the for cycle ends. Also when this command will force the app to exit?
...
0
votes
3answers
436 views
.NET keep application alive while waiting for task to complete
I just inherited a c# 4.0 WinForms app (basically just a small dashboard) that uses a producer-consumer pattern. My consumer task (literally System.Threading.Tasks.Task) is processing data in a ...
5
votes
4answers
28k views
.NET End vs Form.Close() vs Application.Exit Cleaner way to close one's app
sometimes, when I use Form.close() when debugging my program, although the form is closed, the application is still running. I noticed this behaviour when using the msgbox function.
I have no thread ...
8
votes
3answers
3k views
Generic way to exit a .NET application
I understand that there are a few ways to exit an application, such as Application.Exit(), Application.ExitThread(), Environment.Exit(), etc.
I have an external "commons" library, and I'm trying to ...
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 ...
1
vote
3answers
197 views
Exit Application On Error in a C # Library
It is a silly question I admit. So, apologies if this wastes your time but I just cannot find out a solution.
A WinForm Application which has a Class Library. I use Log4Net dll for logging ...
3
votes
3answers
3k views
Add functionality to Windows.Forms exit button?
Programming in C#.NET 4.0 is my latest passion, and I would like to know how to add functionality to the standard Windows.Forms Exit button (the red X in the upper right corner of the form).
I have ...
8
votes
1answer
10k views
How do I properly close a winforms application in C#?
I ran the .exe for my program from the debug folder. It worked, but when I closed it, I discovered that it was still listed on the processes list in the Task Manager.
I figure I must've forgotten a ...
19
votes
2answers
14k views
Application.Exit() vs Application.ExitThread() vs Environment.Exit()
I am trying to figure out which I should be using. On closing my WinForm app fires of a Form in Dialog mode. That form runs a Background worker that Syncs the DB with the remote DB and displays it's ...
2
votes
1answer
483 views
How do I gracefully exit WinForms app when hitting stop debugging in VS?
I'm writing a system tray Winforms app which does some very important cleanup on Application.ApplicationExit. When I hit the stop button while debugging in Visual Studio, this the process exits, but ...
9
votes
5answers
10k views
Application.Exit
I am using VSTS 2008 + .Net 3.5 + C# to develop Windows Forms application. My confusion is, seems Application.Exit does not force application to terminate? If not, which method should I call to make ...