private void button4_Click(object sender, EventArgs e) { this.Hide(); Form d = new logIn(); d.Show(); }
private void timer1_Tick(object sender, EventArgs e) { this.bar.Increment(1); if (bar.Value == 100) { label.Text = "Listo..."; Thread.Sleep(1000); timer1.Stop(); this.Hide(); Form f = new logIn(); f.Show(); } if (bar.Value == 10) { label.Text = "Conectado con el servidor..."; } if (bar.Value == 20) { label.Text = "Conectado con base de datos..."; } if (bar.Value == 30) { label.Text = "Descargando complementos..."; } if (bar.Value == 40) { label.Text = "Buscando Actualizaciones..."; } if (bar.Value == 50) { label.Text = "Cargando Usuarios..."; } if (bar.Value == 80) { label.Text = "Preparando todo..."; } }