home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / SOFTWARE / LIBS / DCLOCK.ZIP / DCLOCK.DPR (.txt) < prev    next >
Text File  |  1995-09-29  |  169b  |  13 lines

  1. program Dclock;
  2.  
  3. uses
  4.   Forms,
  5.   Clkunit in 'CLKUNIT.PAS' {ClkForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TClkForm, ClkForm);
  11.   Application.Run;
  12. end.
  13.