private void bntDangnhap_Click(object sender, EventArgs e) { Connection cn = new Connection(); int kiemtra = new Connection().Login(textID.Text, textPass.Text); if (kiemtra == 2) { MessageBox.Show("Đăng nhập thành công"); ThongTin tg = new ThongTin(); tg.Show(); FormLogin fm = new FormLogin(); fm.Close(); } if (kiemtra == 1) { MessageBox.Show("Mật khẩu không đúng. Nhập lại :)"); textPass.Clear(); textPass.Focus(); } if (kiemtra == 0) { MessageBox.Show("Tài khoản không tồn tại"); textID.Clear(); textPass.Clear(); textID.Focus(); } }