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(); }
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(); } }