Ver Mensaje Individual
  #3  
Antiguo 20-10-2006
Ryu Ryu is offline
Miembro
 
Registrado: abr 2005
Posts: 62
Reputación: 20
Ryu Va por buen camino
Red face este es el codigo usado

este componente no esta completo solo esta completo

Código Delphi [-]
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs,Security,DesignIntf;

type
  Tmegaform = class(Tform)
  private
    { Private declarations }
    name:string;
  public
    constructor Create(AOwner: TComponent); override;

    { Public declarations}
  Published

  end;

procedure Register;

var
 megaform: Tform;

implementation

{$R *.dfm}

procedure Register;
begin
  RegisterComponents('TSECURITY', [Tmegaform]);
  
end;

constructor Tmegaform.Create(Aowner:TComponent);
begin
 inherited Create(Aowner);
end;

end.

Última edición por dec fecha: 20-10-2006 a las 19:08:09.
Responder Con Cita