473,499 Members | 1,568 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Application.Exit problem

Hello everybody,

I need to abort execution during start up, while the constructor called by
Application.Run is executing.

If the database fails to connect during my application's startup I want to
display a message (no problem here) and then abort the program. However,
after the attached code executes I end up with my main form and a wait
cursor! If I click on the X the form closes. Boss doesn't think an
unhandled exception will impress our customers :) Can't say that I
disagree.

Anybody have any ideas what I am doing wrong? (Besides, programming for a
living).

public MainFrame() //MDI appication
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
try
{
Initilize(); //attempts to connect to remote database. throws if it
can't.
}
catch(System.Net.WebException we) // this is thrown when the remote
database can't be found.
{
string message = we.Message; //message explaining that database can't
be found. (my text);
message += "\nNotify System Administrator.\nClosing application";
//some add-on text.
MessageBox.Show(message,"Database
Error!",MessageBoxButtons.OK,MessageBoxIcon.Error) ;
connectFailed = true; //needed to prevent OnLoad event handler from
doing its thing. Form loads even though I have called Exit!
Application.ExitThread(); //This doesn't seem to work. Neither does
Application.Exit() or this.Close();
}
catch(Exception e)
{
throw e; // just a place to put a break point for debugging.
}
}

[STAThread]
static void Main()
{
Application.EnableVisualStyles(); // I am running XP pro.
//Get the running instance.
Process instance = RunningInstance(); //checks for a running instance
of the application. Uses win32 API
if (instance == null)
{
//There isn't another instance, show our form.
SplashScreen.ShowSplashScreen(); // runs on separate thread.
Application.DoEvents();
Application.Run(new MainFrame());
}
else
{
//There is another instance of this process.
HandleRunningInstance(instance);
}
}


Nov 16 '05 #1
4 11142
Chuck,

First, I think that the way that you are checking for a running instance
isn't the best. You can easily use a named mutex (use the Mutex class from
the System.Threading namespace) to keep multiple instances of your
application from running. I like to use the full name of the entry point
type as the mutex name (it's pretty unique).

As for your issue with the exception, I think that you should not try to
exit the application during the constructor of the form that will handle the
main windows message processing. You should establish your database
connection outside of the form constructor (before the Run method is
called), and then pass the connection to the Form if it connects
sucessfully. Otherwise, don't call Run at all.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Chuck" <ce*****@austin.rr.com> wrote in message
news:ik****************@fe2.texas.rr.com...
Hello everybody,

I need to abort execution during start up, while the constructor called by
Application.Run is executing.

If the database fails to connect during my application's startup I want to
display a message (no problem here) and then abort the program. However,
after the attached code executes I end up with my main form and a wait
cursor! If I click on the X the form closes. Boss doesn't think an
unhandled exception will impress our customers :) Can't say that I
disagree.

Anybody have any ideas what I am doing wrong? (Besides, programming for a
living).

public MainFrame() //MDI appication
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
try
{
Initilize(); //attempts to connect to remote database. throws if it
can't.
}
catch(System.Net.WebException we) // this is thrown when the remote
database can't be found.
{
string message = we.Message; //message explaining that database can't
be found. (my text);
message += "\nNotify System Administrator.\nClosing application";
//some add-on text.
MessageBox.Show(message,"Database
Error!",MessageBoxButtons.OK,MessageBoxIcon.Error) ;
connectFailed = true; //needed to prevent OnLoad event handler from
doing its thing. Form loads even though I have called Exit!
Application.ExitThread(); //This doesn't seem to work. Neither does
Application.Exit() or this.Close();
}
catch(Exception e)
{
throw e; // just a place to put a break point for debugging.
}
}

[STAThread]
static void Main()
{
Application.EnableVisualStyles(); // I am running XP pro.
//Get the running instance.
Process instance = RunningInstance(); //checks for a running instance
of the application. Uses win32 API
if (instance == null)
{
//There isn't another instance, show our form.
SplashScreen.ShowSplashScreen(); // runs on separate thread.
Application.DoEvents();
Application.Run(new MainFrame());
}
else
{
//There is another instance of this process.
HandleRunningInstance(instance);
}
}

Nov 16 '05 #2
Thanks, Nicholas, for your advice.

I will check out the use of the Mutex method to prevent multiple instances.
The way I am doing it is too slow.

The idea of running my connection code before I run Application.Run() sounds
interesting. I will, also, look into doing that.

I did, however, find a way to make things work. I moved the
Application.ExitThread() call to MainFrame_Load, the handler for the Load
event. I then used the Boolean switch that I set in the catch block to
determine if I wanted to do normal load things or abort. It works!

Chuck.
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:%2****************@TK2MSFTNGP09.phx.gbl...
Chuck,

First, I think that the way that you are checking for a running instance isn't the best. You can easily use a named mutex (use the Mutex class from the System.Threading namespace) to keep multiple instances of your
application from running. I like to use the full name of the entry point
type as the mutex name (it's pretty unique).

As for your issue with the exception, I think that you should not try to exit the application during the constructor of the form that will handle the main windows message processing. You should establish your database
connection outside of the form constructor (before the Run method is
called), and then pass the connection to the Form if it connects
sucessfully. Otherwise, don't call Run at all.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Chuck" <ce*****@austin.rr.com> wrote in message
news:ik****************@fe2.texas.rr.com...
Hello everybody,

I need to abort execution during start up, while the constructor called by Application.Run is executing.

If the database fails to connect during my application's startup I want to display a message (no problem here) and then abort the program. However , after the attached code executes I end up with my main form and a wait
cursor! If I click on the X the form closes. Boss doesn't think an
unhandled exception will impress our customers :) Can't say that I
disagree.

Anybody have any ideas what I am doing wrong? (Besides, programming for a living).

public MainFrame() //MDI appication
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
try
{
Initilize(); //attempts to connect to remote database. throws if it
can't.
}
catch(System.Net.WebException we) // this is thrown when the remote
database can't be found.
{
string message = we.Message; //message explaining that database can't be found. (my text);
message += "\nNotify System Administrator.\nClosing application";
//some add-on text.
MessageBox.Show(message,"Database
Error!",MessageBoxButtons.OK,MessageBoxIcon.Error) ;
connectFailed = true; //needed to prevent OnLoad event handler from doing its thing. Form loads even though I have called Exit!
Application.ExitThread(); //This doesn't seem to work. Neither does Application.Exit() or this.Close();
}
catch(Exception e)
{
throw e; // just a place to put a break point for debugging.
}
}

[STAThread]
static void Main()
{
Application.EnableVisualStyles(); // I am running XP pro.
//Get the running instance.
Process instance = RunningInstance(); //checks for a running instance of the application. Uses win32 API
if (instance == null)
{
//There isn't another instance, show our form.
SplashScreen.ShowSplashScreen(); // runs on separate thread.
Application.DoEvents();
Application.Run(new MainFrame());
}
else
{
//There is another instance of this process.
HandleRunningInstance(instance);
}
}


Nov 16 '05 #3
Chuck <ce*****@austin.rr.com> wrote:
I need to abort execution during start up, while the constructor called by
Application.Run is executing.

If the database fails to connect during my application's startup I want to
display a message (no problem here) and then abort the program. However,
after the attached code executes I end up with my main form and a wait
cursor! If I click on the X the form closes. Boss doesn't think an
unhandled exception will impress our customers :) Can't say that I
disagree.


Well, three options:

1) Don't do the connection within the form construction. Do it before
you construct the form, but while the splash screen is up.

2) Handle the exception so that customers don't see an unhandled
exception. Don't forget that until your constructor has returned,
Application.Run hasn't been called, which is why Application.Exit isn't
working. A simple try/catch in your Main method should work here, I
believe.

3) Use Environment.Exit instead.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #4
Chuck,

I imagine you are cycling through all the process names and determining
if one exists already (or something equally painful).

Using the mutex, you basically are blocking access to other mutexes with
the same name. Your code, instead of running then checking all other
processes to see if there is a similar one, would just have to check if a
well known, unique name exists. The code goes something like this:

public class EntryPoint
{
public static void Main()
{
// Was the mutex acquired?
bool pblnAcquired = false;

// Try and acquire the mutex. Use the full type name as the mutex
name.
using (Mutex pobjMutex = new Mutex(true,
typeof(EntryPoint).FullName, ref pblnAcquired)
{
// If the mutex was not acquired, then get out.
if (!pblnAcquired)
// Get out.
return;

// Run the application loop here.
Application.Run(new MainForm());
}

// Get out.
return;
}
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Chuck" <ce*****@austin.rr.com> wrote in message
news:gY*****************@fe2.texas.rr.com...
Thanks, Nicholas, for your advice.

I will check out the use of the Mutex method to prevent multiple instances. The way I am doing it is too slow.

The idea of running my connection code before I run Application.Run() sounds interesting. I will, also, look into doing that.

I did, however, find a way to make things work. I moved the
Application.ExitThread() call to MainFrame_Load, the handler for the Load
event. I then used the Boolean switch that I set in the catch block to
determine if I wanted to do normal load things or abort. It works!

Chuck.
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in message news:%2****************@TK2MSFTNGP09.phx.gbl...
Chuck,

First, I think that the way that you are checking for a running instance
isn't the best. You can easily use a named mutex (use the Mutex class

from
the System.Threading namespace) to keep multiple instances of your
application from running. I like to use the full name of the entry point
type as the mutex name (it's pretty unique).

As for your issue with the exception, I think that you should not

try to
exit the application during the constructor of the form that will handle the
main windows message processing. You should establish your database
connection outside of the form constructor (before the Run method is
called), and then pass the connection to the Form if it connects
sucessfully. Otherwise, don't call Run at all.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Chuck" <ce*****@austin.rr.com> wrote in message
news:ik****************@fe2.texas.rr.com...
Hello everybody,

I need to abort execution during start up, while the constructor called by Application.Run is executing.

If the database fails to connect during my application's startup I
want
to display a message (no problem here) and then abort the program.
However
, after the attached code executes I end up with my main form and a wait
cursor! If I click on the X the form closes. Boss doesn't think an
unhandled exception will impress our customers :) Can't say that I
disagree.

Anybody have any ideas what I am doing wrong? (Besides, programming
for
a living).

public MainFrame() //MDI appication
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
try
{
Initilize(); //attempts to connect to remote database. throws if
it can't.
}
catch(System.Net.WebException we) // this is thrown when the remote database can't be found.
{
string message = we.Message; //message explaining that database

can't be found. (my text);
message += "\nNotify System Administrator.\nClosing application";
//some add-on text.
MessageBox.Show(message,"Database
Error!",MessageBoxButtons.OK,MessageBoxIcon.Error) ;
connectFailed = true; //needed to prevent OnLoad event handler from doing its thing. Form loads even though I have called Exit!
Application.ExitThread(); //This doesn't seem to work. Neither does Application.Exit() or this.Close();
}
catch(Exception e)
{
throw e; // just a place to put a break point for debugging.
}
}

[STAThread]
static void Main()
{
Application.EnableVisualStyles(); // I am running XP pro.
//Get the running instance.
Process instance = RunningInstance(); //checks for a running instance of the application. Uses win32 API
if (instance == null)
{
//There isn't another instance, show our form.
SplashScreen.ShowSplashScreen(); // runs on separate thread.
Application.DoEvents();
Application.Run(new MainFrame());
}
else
{
//There is another instance of this process.
HandleRunningInstance(instance);
}
}



Nov 16 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
17643
by: Brendan Miller | last post by:
I am trying to close my application using Application.exit() in the frmMain_Closing event. When the form closes the process does not. My application only has one form (no other classes either). ...
3
5066
by: ZoombyWoof | last post by:
Hi. I'm pretty new to C# so this may seem like the dumbest question today, but I'm stuck. I have a small application, one Form that opens a connection to a database in its constructor. If the...
6
20035
by: orekin | last post by:
Hi There I have been trying to come to grips with Application.Run(), Application.Exit() and the Message Pump and I would really appreciate some feedback on the following questions .. There are...
3
1514
by: Mike Johnson | last post by:
I have the following code in form1 and when the application starts this sub is called to check for a path if not found a message box is displayed and then gives the user an option to end the...
2
1333
by: Mike Johnson | last post by:
The sub is being called from the Sub New(). If I can't use Application.Exit() in this situation then how do I exit the application? please help. Public Sub Check_For_Dir() Dim MyPath, MyName As...
3
1656
by: marciocamurati | last post by:
Hi, I have a problem with my application exit, I create a button that call another form and close my application: Private Sub closeApplication() Dim Status As New Status status.Show() ...
4
4073
by: vul | last post by:
I start the application with Application.Run(New MDIMain) in Sub Main. MDIMain is the mdi form which loads and then calls Login form. I'm using Application.Exit to terminate my VB 2005 application...
4
9497
by: JIM.H. | last post by:
Here is the code I am having problem: static void Main(string args) { bool isPar = false; if ((args.Length == 1)) { if ((args(0).ToUpper() == "MYPAR")) { isPar = true;
1
7018
by: Chris Cairns | last post by:
I have a MDI Application and would like to prompt the user before exit. I placed the following in the FormClosing event. It appears to work properly, however when a user answers no to the...
0
7009
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7178
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7223
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6899
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5475
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4602
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3103
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3094
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1427
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.