private void retu_Click(object sender, EventArgs e) { LOGIN l = new LOGIN(); l.Show(); this.Hide(); }
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(); } }