Beispiel #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            this.Hide();
            FormAluno fUC = new FormAluno();

            fUC.ShowDialog();
        }
Beispiel #2
0
        private void Aluno_btn_Click(object sender, EventArgs e)
        {
            this.Hide();
            FormAluno fAluno = new FormAluno();

            fAluno.ShowDialog();
        }
Beispiel #3
0
        private void alunoToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Hide();
            FormAluno fAluno = new FormAluno();

            fAluno.ShowDialog();
        }
Beispiel #4
0
        private void PreviousPage_Click(object sender, EventArgs e)
        {
            this.Close();
            FormAluno faluno = new FormAluno();

            faluno.Show();
        }
Beispiel #5
0
        private void button1_Click(object sender, EventArgs e)
        {
            switch (textBox1.Text)
            {
            case "ALUNO":
                this.Hide();
                FormAluno fAluno = new FormAluno();
                fAluno.ShowDialog();
                break;

            default:
                MessageBox.Show("Erro");
                break;
            }
        }