Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8173875
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T22:18:37+00:00 2026-06-06T22:18:37+00:00

I know that I can hijack a form by showing a login form in

  • 0

I know that I can hijack a form by showing a login form in an event prior to that form displaying (Load() event, IIRC), but in (perhaps foolishly) trying to “cut corners” and create a quick&dirty login screen, I’ve run into a dilemma.

Here’s what I did with an existing project (login form added after the fact):

1) Created the login form
2) Changed program.cs so that this login form is now the first form created
3) Added code to the login form that shows the "main" form if the login is successful. I then Hide the login form.

This caused the app to never shut down (except via Shift+F5) as the hidden main form was still lurking about. So, I added a “Close()” to the “main” form’s FormClosing event, thinking this would cause the whole app to shut down (IOW, the Hidden login form).

But (fittingly, perhaps), rather than solving my problem, this causes “An unhandled exception of type ‘System.StackOverflowException’ occurred in System.Windows.Forms.dll”

Now I don’t know if I should proceed with this quick&dirty attempt (and how) or cut my losses and revert to the show-the-login-form-in-the-Load-event method[ology].

UPDATE

Alex M’s solution worked. The only additional thing you need to do is something like this in your login form:

private void buttonLogin_Click(object sender, EventArgs e)
{
    String userName = textBoxUserName.Text.Trim();
    String pwd = textBoxPassword.Text.Trim();
    if ((userName == "donMcLean") || (pwd == "Drove my Chevy to the levee but the levee was dry, them good ole boys were drinking whiskey & Rye"))
    {
        this.DialogResult = DialogResult.OK;
    }
    else
    {
        MessageBox.Show("Incorrect User Name and/or Password");
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T22:18:38+00:00Added an answer on June 6, 2026 at 10:18 pm

    The creation order is not particularly important. You can show login form using form.ShowDialog() . Doing so disposes the form and addresses the issue you are describing.

    For example:

    var login = new LoginForm();
    var mainForm = new MainForm();
    
    if (login.ShowDialog() != DialogResult.Ok) 
    {
          return; // Exit the application
    }
    
    Application.Run(mainForm);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that can't use left join in indexed view. but I don't understand
I know that can co-exists with web form no problem as Hanselman mention here
I know that it's a subject that can raise a lot of debate, but
I want to know that can mouse click event detects colors or even strings.
I know that I can get the true bits with the simple loop, but
We know that, we can set a permalink structure for wordpress from settings. But,
We all know that you can simulate click or any other event on an
I know that we can protect .Net applications from decompiling by using obfuscators. But
I just want to know that can i make an application which have some
I know that I can track when the mouse is moved like this: $(body).mousemove(

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.