Starting form to appear before the next form

If you double click the form that currently shows up first to get the form load method, then place your form you want to show up first within the method, it should display when the main form loads up and hide the first one. Just make it so No exits the environment.

 private void Lottery_Sim_Load(object sender, EventArgs e)
    {
        AgeVerificationForm.ShowDialog();
    }

Leave a Comment