Ejemplo n.º 1
0
        private void DepartmentStockOutConfirmForm_Load(object sender, EventArgs e)
        {
            deptStockOutList = new StockOutViewCollection(bdsDeptStockOut);
            bdsDeptStockOut.DataSource = deptStockOutList;
            bdsDeptStockOut.ResetBindings(true);

            deptStockOutDetailList = new StockOutDetailViewCollection(bdsDeptStockOutDetail);
            bdsDeptStockOutDetail.DataSource = deptStockOutDetailList;
            bdsDeptStockOutDetail.ResetBindings(true);
        }
Ejemplo n.º 2
0
        private void MainStockOutReportForm_Load(object sender, EventArgs e)
        {
            stockOutList = new StockOutViewCollection(bdsStockOut);
            bdsStockOut.DataSource = stockOutList;
            bdsStockOut.ResetBindings(true);

            stockOutDetailViewList = new StockOutDetailViewCollection(bdsStockOutDetail);
            bdsStockOutDetail.DataSource = stockOutDetailViewList;
            bdsStockOutDetail.ResetBindings(true);
        }