Exemple #1
0
        private void btnVolverInicio_Click(object sender, EventArgs e)
        {
            FRInicio fr = new FRInicio();

            fr.Show();
            this.Hide();
        }
Exemple #2
0
        private void btnAtras_Click(object sender, EventArgs e)
        {
            FRInicio F = new FRInicio();

            F.Show();
            this.Hide();
        }
Exemple #3
0
 private void timer1_Tick(object sender, EventArgs e)
 {
     progressBar1.Increment(1);
     if (progressBar1.Value == 100)
     {
         timer1.Stop();
         FRInicio newForm = new FRInicio();
         newForm.Show();
         this.Hide();
     }
 }