Example #1
0
        public static void ShowResult(dynamic data, List <question_data> all, string gid)
        {
            frmResult res = new frmResult(_this, data, all, gid);

            res.Owner = _this;
            res.ShowDialog();
        }
Example #2
0
 private void tsmiResult_Click(object sender, EventArgs e)
 {
     if (listView1.CheckedItems.Count == 1)
     {
         frmResult fr = new frmResult(listView1);
         fr.Show();
     }
 }