home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Demos / Cpl / Date / CPLDEMO.DPR next >
Encoding:
Text File  |  1999-08-11  |  285 b   |  18 lines

  1. library CPLDemo;
  2.  
  3. uses
  4.   CtlPanel,
  5.   main in 'main.pas' {DTConfig: TAppletModule},
  6.   ufrmdt in 'ufrmdt.pas' {frmDateTime};
  7.  
  8. exports CPlApplet;
  9.  
  10. {$E cpl}
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TDTConfig, DTConfig);
  17.   Application.Run;
  18. end.