public void goToPCCV() { this.Hide(); frmPhanCongCongViec frmPccv = new frmPhanCongCongViec(); frmPccv.ShowDialog(); }
private void btnTiepTuc2_Click(object sender, EventArgs e) { string checkText = txtKetQua2.Text; if (checkText.Equals("Phải")) { MessageBox.Show("Hay Lắm Thằng Ngu ạ, Câu trả lời đúng r", "Đúng Rồi", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Hide(); frmPhanCongCongViec pccv = new frmPhanCongCongViec(); pccv.ShowDialog(); } else { MessageBox.Show("M thông minh lắm thằng ngu ạ, Nhưng sai r", "Sai Rồi", MessageBoxButtons.OK, MessageBoxIcon.Error); } }