home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / delphi / delphi2 / datetime.exe / 16BIT / PDTDEMO.DPR < prev    next >
Text File  |  1996-10-05  |  275b  |  15 lines

  1. program Pdtdemo;
  2.  
  3. uses
  4.   Forms,
  5.   Fdtdemo in 'FDTDEMO.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Title := 'Date Time Selection Demo';
  11.   Application.HelpFile := 'D:\WORK\COMPONS\DATETIME.HLP';
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.