private void btnLapphieunhap_Click(object sender, EventArgs e) { if (TxtMaPN.Text == "" || TxtNCC.Text == "") { MessageBox.Show("Cần nhập đầy đủ thông tin", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); TxtMaPN.Focus(); } else { if (PN.isExistMaPN(TxtMaPN.Text)) { MessageBox.Show("Mã phiếu nhập đã tồn tại", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); TxtMaPN.Focus(); } else { Regex reg = new Regex(match); if (reg.IsMatch(this.TxtEmail.Text)) { PN.Themphieunhap(TxtMaPN.Text, CbNguoilap.Text, DTNgaylap.Value.Date, TxtNCC.Text, txtDiachi.Text, MtbSDT.Text, TxtEmail.Text); Mapn = TxtMaPN.Text; MessageBox.Show("Đã thêm thành công", "Thông Báo", MessageBoxButtons.OK); Hien(); Chitietphieunhap ctpn = new Chitietphieunhap(); ctpn.MdiParent = this.MdiParent; ctpn.Show(); BtnHuybo_Click(sender, e); } else { MessageBox.Show("Email nhập vào không hợp lệ", "Thông Báo", MessageBoxButtons.OK); } } } }
private void btnChitietpn_Click(object sender, EventArgs e) { DataView dv = (DataView)DGRDanhsachphieunhap.DataSource; DataTable t = dv.ToTable(); Mapn = t.Rows[DGRDanhsachphieunhap.CurrentRow.Index]["MaPN"].ToString(); Chitietphieunhap ctpn = new Chitietphieunhap(); ctpn.disable_BtnSua(); ctpn.disable_BtnThem(); ctpn.disable_BtnXoa(); ctpn.MdiParent = this.MdiParent; ctpn.Show(); }