Beispiel #1
0
        private void pictureBox4_Click_1(object sender, EventArgs e)
        {
            PLogin L = new PLogin();

            L.Show();
            this.Hide();
        }
Beispiel #2
0
 private void timer1_Tick(object sender, EventArgs e)
 {
     progressBar1.Value = progressBar1.Value + 2;
     // progressBar1.Value = progressBar1.Value + 2;
     // progressBar1.Style = ProgressBarStyle.Continuous;
     if (Convert.ToInt32(progressBar1.Value) == 100)
     {
         timer1.Stop();
         timer1.Enabled = false;
         this.Hide();
         PLogin da = new PLogin();
         da.Show();
     }
 }