home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / QDB / VADDBOOK.ZIP / add_book.dpr < prev    next >
Text File  |  1998-06-28  |  221b  |  15 lines

  1. program add_book;
  2.  
  3. uses
  4.   Forms,
  5.   AB_Main in 'AB_Main.pas' {AB_Form};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10. {$IFDEF WIN32}Application.Initialize; {$ENDIF}
  11.   Application.CreateForm(TAB_Form, AB_Form);
  12.   Application.Run;
  13. end.
  14.  
  15.