home *** CD-ROM | disk | FTP | other *** search
- {
- A unit for BCKCLOCK.DPR, a testprogram for:
- TzSegmentClock
- TzBackground
- The ZieglerCollection one (TM)
- Version 1,01
-
- (C) Copyright 1995,96,97 By ZieglerSoft, all rights reserved
- }
- unit Bcchild;
-
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, zGauge,
- ExtCtrls, Zsplit, Zseg, Blend;
-
- type
- TMDIChild = class(TForm)
- zSegmentClock1: TzSegmentClock;
- zBackground1: TzBackground;
- procedure FormClose(Sender: TObject; var Action: TCloseAction);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- implementation
-
- {$R *.DFM}
-
-
- procedure TMDIChild.FormClose(Sender: TObject; var Action: TCloseAction);
- begin
- Action := caFree;
- end;
-
- end.
-