home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / delphi / kolekce / d56 / DM2KVCL.ZIP / WKSDEMO / WKSDEMO.DPR < prev    next >
Text File  |  2000-11-26  |  451b  |  17 lines

  1. {****************************************************************************}
  2. {                            Data Master 2000                                }
  3. {****************************************************************************}
  4. program WksDemo;
  5.  
  6. uses
  7.   Forms,
  8.   WksDemoU in 'WksDemoU.pas' {WKSDemoForm};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TWKSDemoForm, WKSDemoForm);
  15.   Application.Run;
  16. end.
  17.