public static frmPRODUCTOSINCODIGO ObtenerInstancia(string formLlama)
 {
     _instancia = new frmPRODUCTOSINCODIGO(formLlama);
     return _instancia;
 }
 private void btnPRODUCTOSINCODIGO_Click(object sender, EventArgs e)
 {
     try
     {
         frmPRODUCTOSINCODIGO frm = new frmPRODUCTOSINCODIGO(Constantes.presupuesto);
         DialogResult dr = frm.ShowDialog();
         if (dr == DialogResult.OK)
         {
             LlenarLineaEnGrilla(null, Categoria, CategoriaPrecio, null);
             Nuevo_Item();
         }
     }
     catch (Exception ex)
     {
         ProcesarExcepcion(ex);
     }
 }