public nuevo_registo(string guid)
 {
     InitializeComponent();
     this.conexion = new Conexion();
     if (!guid.Equals(""))
     {
         this.editar = true;
         this.guid = guid;
     }
 }
 public nuevo_objeto( string guidRegistro , string guidObjeto)
 {
     InitializeComponent();
     this.conexion = new Conexion();
     if (!guidObjeto.Equals(""))
     {
         this.editar = true;
         this.guidObjeto = guidObjeto;
         this.guidRegistro = guidRegistro;
     }
 }
Beispiel #3
0
 public Form1()
 {
     InitializeComponent();
     conexion = new Conexion();
     conexion.MessageHandler = this;
     listCodigo = new List<Scintilla>();
     listTab = new List<TabPage>();
     codigosModificados = new List<CodigoModificado>();
     registros = conexion.getRegistros(10);
     lenguajes = conexion.getLenguajes();
     imgIconosLenguajes = new ImageList();
     imgIconosLenguajes.ImageSize = new Size(20,20);
     imgIconosVersiones = new ImageList();
     imgIconosVersiones.ImageSize = new Size(32, 32);
 }
 public nuevo_objeto()
 {
     InitializeComponent();
     this.conexion = new Conexion();
 }