Ver Mensaje Individual
  #2  
Antiguo 16-11-2005
Avatar de dec
dec dec is offline
Moderador
 
Registrado: dic 2004
Ubicación: Alcobendas, Madrid, España
Posts: 13.107
Reputación: 34
dec Tiene un aura espectaculardec Tiene un aura espectacular
Hola,

No estoy seguro,... ¿te refieres a algo así?

Código Delphi [-]
 type
   TUnObjeto = class(TObject)
   private
     FUnaVariable: integer;
   public
     property UnaPropiedad: integer read FUnaVariable write FUnaVariable;
   end;
 
 var
   UnosObjetos: array[0..3] of TUnObjeto; // Array estático
   OtrosObjetos: array of TUnObjeto; // Array dinámico
__________________
David Esperalta
www.decsoftutils.com
Responder Con Cita