Beispiel #1
0
        private void TimerSplash_Tick(object sender, EventArgs e)
        {
            FrmInicio inicio = new FrmInicio();

            progressBar1.Increment(4);
            if (progressBar1.Value == progressBar1.Maximum)
            {
                inicio.Show();
                TimerSplash.Stop();
                this.Visible = false;
            }
        }
Beispiel #2
0
 private void FrmSplash_Load(object sender, EventArgs e)
 {
     TimerSplash.Start();
 }