home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 November / Chip_2002-11_cd1.bin / zkuste / delphi / kompon / d123456 / JBDBF.ZIP / TESTDBF.DPR < prev    next >
Text File  |  2001-12-05  |  193b  |  14 lines

  1. program Testdbf;
  2.  
  3. uses
  4.   Forms,
  5.   Testdbf1 in 'TESTDBF1.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.