private void btnThemCauHoi_Click(object sender, EventArgs e) { FormCNCH f = new FormCNCH(); f.ControlBox = false; f.Show(); }
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(); } }