public fHangHoa(fMain main) { InitializeComponent(); LoadData(); ChangeHeader(); LoadFirstCell(); this.main = main; }
private void btnSignin_Click(object sender, EventArgs e) { if (string.IsNullOrWhiteSpace(txtUsername.Text) || string.IsNullOrWhiteSpace(txtPassword.Text)) { MessageBox.Show("Hay nhap day du thong tin"); return; } if (LoginBUS.Instance.checkLogin(txtUsername.Text, txtPassword.Text)) { fMain fmain = new fMain(); this.Hide(); fmain.ShowDialog(); } else { MessageBox.Show("Tên tài khoản hoặc mật khẩu không đúng", "Lỗi Đăng Nhập"); } }