Click here to Skip to main content
Click here to Skip to main content

Multiple Subsequent "Main" Forms in C# Apps

By , 22 Nov 2011
 
In this Quick Answer question[^], aspdotnetdev recommended to the original poster to run Application.Run twice. I had never thought of doing that before, but I actually found a reason to do so in my own development process (aspdotnet gave me divine dispensation to post a tip/trick about it, but I needed a real-world example before I could do it - here's that example).
 
We have an application that requires the user to login. My solution was based on this little info gem.
 
First, I created a login form. In the form I placed the requisite userID/password textboxes, and a Login and Cancel buttons. The handlers for these buttons set the DialogResult property of the form (Login sets it to DialogResult.OK and Cancel sets it to DialogResult.Cancel).
 
Then, in program.cs, I have the following code:
 
static class Program
{
    private static FormSplash m_formSplash = null; 
 
    [STAThread]
    static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
 
        m_formSplash = new FormSplash();
        Application.Run(m_formSplash);
        if (m_formSplash.DialogResult == DialogResult.OK)
        {
            Application.Run(new FormMain());
        }
    }
}
 
What happens is that the splash form runs, and when it exits, the application class itself determines whether or not to exit the app or run the next form.
 
This sure beats running the main form and having special processing in that form to handle the login form. It's A LOT cleaner (code abstraction/separation is almost always a good thing), and easier to maintain, especially if there are copious comments in the Form classes to notify the maintenance programmer (or remind the original programmer) what's happening, and why.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

John Simmons / outlaw programmer
Software Developer (Senior)
United States United States
Member
I've been paid as a programmer since 1982 with experience in Pascal, and C++ (both self-taught), and began writing Windows programs in 1991 using Visual C++ and MFC. In the 2nd half of 2007, I started writing C# Windows Forms and ASP.Net applications, and have since done WPF, Silverlight, WCF, web services, and Windows services.
 
My weakest point is that my moments of clarity are too brief to hold a meaningful conversation that requires more than 30 seconds to complete. Thankfully, grunts of agreement are all that is required to conduct most discussions without committing to any particular belief system.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralReason for my vote of 5 It works great.memberMangore23 Jul '10 - 9:03 
Reason for my vote of 5
It works great.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 22 Nov 2011
Article Copyright 2010 by John Simmons / outlaw programmer
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid