Ejemplo n.º 1
0
 private void btnChoose_Click(object sender, EventArgs e)
 {
     if (dgwQuestions.SelectedRows.Count > 0)
     {
         //int key = int.Parse(dgwQuestions.SelectedRows[0].Cells[6].Value.ToString());
         int key = (int)dgwQuestions.SelectedRows[0].Cells[6].Value;
         if (grandparentForm != null)
         {
             // form called by student's assessment form
             grandparentForm.CurrentQuestion = Commons.bl.GetQuestionById(key);
             grandparentForm.DisplayCurrentQuestion();
         }
     }
     else
     {
         MessageBox.Show("Scegliere una domanda nella griglia");
         return;
     }
 }