home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap08 / howto03 / creatabs / creatabs.dpr next >
Encoding:
Text File  |  1996-02-01  |  197 b   |  13 lines

  1. program CREATABS;
  2.  
  3. uses
  4.   Forms,
  5.   TABCREAT in 'TABCREAT.PAS' {CreateTableForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TCreateTableForm, CreateTableForm);
  11.   Application.Run;
  12. end.
  13.