home *** CD-ROM | disk | FTP | other *** search
- unit Regform;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls;
-
- type
- TRegBox = class(TForm)
- Registor: TLabel;
- procedure FormCreate(Sender: TObject);
- procedure RegistorClick(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- RegBox: TRegBox;
-
- implementation
-
- {$R *.DFM}
-
- procedure TRegBox.FormCreate(Sender: TObject);
- begin
- Registor.Caption := chr(13) + 'This is an UnRegistored version of ???? Components!'+chr(13)+
- 'To Risgistor, please send 1,000,000 dollars to'+chr(13) + 'Clinton' + chr(13) +
- 'WhiteHouse' + chr(13) + 'Washington DC 98439' + chr(13) +
- 'And your E-mail Address.'+ chr(13) +
- 'I will E-mail you the Thankyou letter.';
- end;
-
- procedure TRegBox.RegistorClick(Sender: TObject);
- begin
- Close
- end;
-
- end.
-