コード例 #1
0
 private void BtnBuscarOrdenCompra_Click(object sender, EventArgs e)
 {
     if (TxtOrdenCompra.Text != "")
     {
         DataTable Dt = new DataTable();
         Dt = ObjCL_OrdenCompra.GetOCPorProductos(TxtOrdenCompra.Text, AppSettings.EmpresaID + AppSettings.SedeID);
         TdgListaProductos.SetDataBinding(Dt, "", true);
     }
 }
コード例 #2
0
 private void FrmListaProductos_Load(object sender, EventArgs e)
 {
     TdgListaProductos.SetDataBinding(Ventas8.DtProductos, "", true);
 }