示例#1
0
        private void Produccion_Load(object sender, EventArgs e)
        {
            CmbTipoGasto.Properties.DataSource = Controlador.Utils.GetCatalog("[Produccion].[c_TipoGasto]");
            CmbMaterial.Properties.DataSource  = ctrlMateriales.GetAll();

            Limpiar();
        }
示例#2
0
 private void cargarMateriales()
 {
     gcMaterial.DataSource = ctrlMaterial.GetAll();
 }
示例#3
0
 private void Compras_Load(object sender, EventArgs e)
 {
     cmbMaterial.DataSource             = ctrlMaterial.GetAll();
     CmbProveedor.Properties.DataSource = ctrlProveedor.GetAll();
 }