home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / calendar.lzh / CALEN.DPR next >
Text File  |  1995-05-03  |  198b  |  14 lines

  1. program Calen;
  2.  
  3. uses
  4.   Forms,
  5.   Calunit in 'CALUNIT.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Title := 'Calendar';
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.