private void QLSanPham_Load(object sender, EventArgs e) { // xuất hiện giữa màn hình this.CenterToScreen(); // hiển thị displaySanPhamToDgv(dgvSanPham, spDao.getAllSP()); }
private void QliHoadon_Load(object sender, EventArgs e) { this.CenterToScreen(); displayHD(dgvHoaDon, hdDao.getAllHD()); // display comboboxSanPham cbSanPham.DataSource = spDao.getAllSP(); cbSanPham.DisplayMember = "TenSP"; cbSanPham.ValueMember = "MaSP"; }
private void QuanLyHoadon_Load(object sender, EventArgs e) { this.CenterToScreen(); // hiển thị ds hđ gồm dgv và tất cả hđ displayHD(dgvHoaDon, hdDao.getAllHD()); // hiển thị trên combobox tên SanPham cbSanPham.DataSource = spDao.getAllSP(); // DisplayMember là hiển thị cbSanPham.DisplayMember = "TenSP"; // ValueMember là lưu lại cbSanPham.ValueMember = "MaSP"; }
private void QuanLyHoadon_Load(object sender, EventArgs e) { this.CenterToScreen(); // hiển thị ds hđ gồm dgv và tất cả hđ displayHD(dgvHoaDon, new HoaDonDao().getAllHD()); //displayHD(dataGridView1, new HoaDonDao().getAllHD()); // hiển thị trên combobox tên SanPham cbSanPham.DataSource = spDao.getAllSP(); // DisplayMember là hiển thị tên để chọn cbSanPham.DisplayMember = "TenSP"; // ValueMember là nhận mã để luu lại cbSanPham.ValueMember = "MaSP"; }
private void QLSanPham_Load(object sender, EventArgs e) { this.CenterToScreen(); displaySanPhamToDgv(dgvSanPham, spDao.getAllSP()); }