home *** CD-ROM | disk | FTP | other *** search
- unit About;
-
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls, AnaClock, Stamps;
-
- type
- TAboutBox = class(TForm)
- Panel1: TPanel;
- OKButton: TBitBtn;
- ProductName: TLabel;
- Version: TLabel;
- Copyright: TLabel;
- Comments: TLabel;
- AnalogClock1: TAnalogClock;
- TimeStamp1: TTimeStamp;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- procedure Panel1DblClick(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- AboutBox: TAboutBox;
-
- implementation
-
- {$R *.DFM}
-
- procedure TAboutBox.Panel1DblClick(Sender: TObject);
- begin
- TimeStamp1.Visible := not TimeStamp1.Visible;
- end;
-
- end.
-
-
-