Ejemplo n.º 1
0
        public void frmIventory_Load(object sender, EventArgs e)
        {
            dtAll = bllss4.getAllOrders();
            dataGridView1.DataSource = dtAll;
            DataView view = dtAll.DefaultView;

            view.Sort = "OrderDate ASC, TranSactionName ASC";

            DataTable dt1 = bllss4.getAllWareHouses();

            AmountColor();
        }