private void btnDangNhap_Click(object sender, EventArgs e) { frmMenuQuanLy rmQUly = new frmMenuQuanLy(); rmQUly.Show(); this.Hide(); }
private void btnDangNhap_Click(object sender, EventArgs e) { txtTaiKhoan.Text = txtTaiKhoan.Text.ToUpper(); if (txtTaiKhoan.Text == "" || txtMatKhau.Text == "") { MessageBox.Show("Tài khoản hoặc mật khẩu không được để trống!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { if (txtTaiKhoan.Text == "ADMIN" && txtMatKhau.Text == "123") { frmMenuQuanLy rmQUly = new frmMenuQuanLy(); rmQUly.Show(); this.Hide(); } else { MessageBox.Show("Tài khoản hoặc mật khẩu không đúng!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } }