예제 #1
0
        private void btnThemCauHoi_Click(object sender, EventArgs e)
        {
            FormCNCH f = new FormCNCH();

            f.ControlBox = false;
            f.Show();
        }
예제 #2
0
 private void btnEdit_Click(object sender, EventArgs e)
 {
     if (indexDgvCH == -1)
     {
         MessageBox.Show("Bạn chưa chọn câu hỏi muốn sửa!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
     else
     {
         FormCNCH f = new FormCNCH(tmpAdd);
         f.Text       = "Sửa câu hỏi";
         f.ControlBox = false;
         f.ShowDialog();
     }
 }