コード例 #1
0
 private void btnLogin_Click(object sender, EventArgs e)
 {
     if (txtMaDangNhap.Text == "")
     {
         MessageBox.Show("Mã đăng nhập không được trống", "Thông báo",
                         MessageBoxButtons.OK, MessageBoxIcon.Error);
         txtMaDangNhap.Focus();
         return;
     }
     else if (txtMatKhau.Text == "")
     {
         MessageBox.Show("Mật khẩu không được trống", "Thông báo",
                         MessageBoxButtons.OK, MessageBoxIcon.Error);
         txtMatKhau.Focus();
         return;
     }
     else if (BUS.DangNhapChuongTrinh(txtMaDangNhap.Text, txtMatKhau.Text, cboQuyen.SelectedValue.ToString()) == null || BUS.DangNhapChuongTrinh(txtMaDangNhap.Text, txtMatKhau.Text, cboQuyen.SelectedValue.ToString()).Rows.Count == 0)
     {
         MessageBox.Show("Thông tin tài khoản không đúng", "Thông báo",
                         MessageBoxButtons.OK, MessageBoxIcon.Error);
         return;
     }
     else
     {
         this.Hide();
         frmHome1 f = new frmHome1();
         MaTK_NV_Luu = txtMaDangNhap.Text;
         MatKhau_Luu = txtMatKhau.Text;
         Quyen_Luu   = cboQuyen.SelectedValue.ToString();
         f.Show();
     }
 }
コード例 #2
0
        private void btnHome1_Click(object sender, EventArgs e)
        {
            this.Hide();
            frmHome1 home = new frmHome1();

            home.ShowDialog();
        }