Esempio n. 1
0
 private void CargarCombo(string SP, ref DropDownList Combo, string Parametro, string Valor)
 {
     try
     {
         CN_Comun CNComun = new CN_Comun();
         CNComun.LlenaCombo(SP, ref Combo, Parametro, Valor);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Esempio n. 2
0
 private void CargarCombo(string SP, ref ListBox Combo, string parametro1, string parametro2, string parametro3, string valor1, string valor2, string valor3, ref List <Comun> Etiquetas)
 {
     try
     {
         CN_Comun CNComun = new CN_Comun();
         CNComun.LlenaCombo(SP, ref Combo, parametro1, parametro2, parametro3, valor1, valor2, valor3, ref Etiquetas);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Esempio n. 3
0
 private void CargarComboBasicos(string SP, ref DropDownList Combo)
 {
     try
     {
         CN_Comun CNComun = new CN_Comun();
         CNComun.LlenaCombo(SP, ref Combo);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }