Exemplo n.º 1
0
        private void btniNotes_Click(object sender, EventArgs e)
        {
            bIsQuestion = false;
            Form frmNotes = new frmSchedulesQuestions();

            frmNotes.ShowDialog();
        }
Exemplo n.º 2
0
        private void btniQuestions_Click(object sender, EventArgs e)
        {
            bIsQuestion = true;
            Form frmQuestions = new frmSchedulesQuestions();

            frmQuestions.ShowDialog();
        }
Exemplo n.º 3
0
 private void btniQuestions_Click(object sender, EventArgs e)
 {
     bIsQuestion = true;
     Form frmQuestions = new frmSchedulesQuestions();
     frmQuestions.ShowDialog();
 }
Exemplo n.º 4
0
 private void btniNotes_Click(object sender, EventArgs e)
 {
     bIsQuestion = false;
     Form frmNotes = new frmSchedulesQuestions();
     frmNotes.ShowDialog();
 }