예제 #1
0
 public DanhSachPhieuNhapHang_Form()
 {
     InitializeComponent();
     this.bulImportReceipt = new BUL_PhieuNhapHang();
     this.gridControlDanhSachPhieuNhap.DataSource = this.bulImportReceipt.getAll(); // binding data for gridview
     // some columns that is not informative will be invisible
     this.gridViewDanhSachPhieuNhapHang.Columns[5].Visible = false;
     this.gridViewDanhSachPhieuNhapHang.Columns[6].Visible = false;
     this.gridViewDanhSachPhieuNhapHang.Columns[7].Visible = false;
 }
예제 #2
0
 // refresh grid control datasource
 private void refresh()
 {
     this.bulImportReceipt = new BUL_PhieuNhapHang();
     this.gridControlDanhSachPhieuNhap.DataSource = this.bulImportReceipt.getAll();
 }