Example #1
0
        private void retu_Click(object sender, EventArgs e)
        {
            LOGIN l = new LOGIN();

            l.Show();
            this.Hide();
        }
Example #2
0
 private void timer1_Tick(object sender, EventArgs e)
 {
     loading.Increment(1);
     if (loading.Value == 100)
     {
         timer1.Stop();
         LOGIN lo = new LOGIN();
         lo.Show();
         this.Hide();
     }
 }