private void cadastroDeUsuarioToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Hide();
            AgendaDeContatos tela = new AgendaDeContatos();

            tela.ShowDialog();
        }
        private void toolStripButton5_Click(object sender, EventArgs e)
        {
            this.Hide();
            AgendaDeContatos tela = new AgendaDeContatos();

            tela.ShowDialog();
        }
Example #3
0
 private void timer1_Tick(object sender, EventArgs e)
 {
     if (progressBar1.Value < 100)
     {
         progressBar1.Value = progressBar1.Value + 2;
     }
     else
     {
         timer1.Stop();
         this.Hide();
         AgendaDeContatos tela = new AgendaDeContatos();
         tela.ShowDialog();
     }
 }