home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / Runimage / Delphi50 / Demos / Db / Cachedup / cache.dpr < prev    next >
Encoding:
Text File  |  1999-08-11  |  440 b   |  18 lines

  1. program Cache;
  2.  
  3. uses
  4.   Forms,
  5.   CachedUp in 'CachedUp.pas' {CacheDemoForm},
  6.   About in 'About.pas' {AboutDialog},
  7.   ErrForm in 'Errform.pas' {UpdateErrorForm},
  8.   DataMod in 'DataMod.pas' {CacheData: TDataModule};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TCacheData, CacheData);
  14.   Application.CreateForm(TCacheDemoForm, CacheDemoForm);
  15.   Application.CreateForm(TUpdateErrorForm, UpdateErrorForm);
  16.   Application.Run;
  17. end.
  18.