private void SoXeTiepNhanTrongNgay(string Ngay) { int count = XeBUS.Xe_DemDSTheoNgay(dateNgayTiepNhan.Text); if (count >= XeBUS.SoXeSuaChuaTrongNgay()) { MessageBox.Show("Số xe tiếp nhận trong ngày đã đủ"); } }
private void btnThemMoi_Click(object sender, EventArgs e) { txtBienSo.Text = ""; txtDiaChi.Text = ""; txtDienThoai.Text = ""; txtEmail.Text = ""; txtTenChuXe.Text = ""; if (XeBUS.Xe_DemDSTheoNgay(dateNgayTiepNhan.Text) >= XeBUS.SoXeSuaChuaTrongNgay()) { MessageBox.Show(string.Format("Số xe đã tiếp nhận đủ {0}chiếc", XeBUS.SoXeSuaChuaTrongNgay()), "Thông báo"); } btnXoa.Enabled = false; }
private bool KiemTra() { if (txtTenChuXe.Text.Trim().Equals("")) { MessageBox.Show("Tên chủ xe chưa có !!!"); txtTenChuXe.Focus(); return(false); } if (txtBienSo.Text.Trim().Equals("")) { MessageBox.Show("Biển số chưa có !!!"); txtBienSo.Focus(); return(false); } if (cbHieuXe.Text.Trim().Equals("")) { MessageBox.Show("Hiệu xe chưa được chọn !!!"); cbHieuXe.Focus(); return(false); } if (cbHieuXe.FindStringExact(cbHieuXe.Text) == -1) { MessageBox.Show("Hiệu xe không có trong gara!!"); cbHieuXe.Focus(); return(false); } if (txtDiaChi.Text.Trim().Equals("")) { MessageBox.Show("Địa chỉ chưa có!!!"); txtDiaChi.Focus(); return(false); } if (txtDienThoai.Text.Trim().Equals("")) { MessageBox.Show("Chưa nhập số điện thoại!!!"); txtDienThoai.Focus(); return(false); } if (txtEmail.Text.Trim().Equals("")) { MessageBox.Show("Chưa nhập email !!!"); txtEmail.Focus(); return(false); } DataTable dt = XeBUS.Xe_DanhSach(); DataView dv = dt.DefaultView; dv.Sort = "BienSo"; if (dv.Find(txtBienSo.Text) != -1) { MessageBox.Show("Biển số đã có !"); txtBienSo.Focus(); return(false); } if (XeBUS.Xe_DemDSTheoNgay(dateNgayTiepNhan.Text) >= XeBUS.SoXeSuaChuaTrongNgay()) { MessageBox.Show(string.Format("Số xe đã tiếp nhận đủ {0}chiếc", XeBUS.SoXeSuaChuaTrongNgay()), "Thông báo"); return(false); } return(true); }