Beispiel #1
0
        private void btniNotes_Click(object sender, EventArgs e)
        {
            bIsQuestion = false;
            Form frmNotes = new frmSchedulesQuestions();

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

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