home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / s_to_z / tpack / tpdll.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  211 b   |  19 lines

  1. library tpDLL;
  2.  
  3. uses Forms, About;
  4.  
  5. procedure AboutBox; export;
  6. begin
  7.   With TAboutBox.Create(Application) do try
  8.     Execute
  9.   finally
  10.     free;
  11.     end;
  12. end;
  13.  
  14. exports
  15.   AboutBox;
  16.  
  17. begin
  18. end.
  19.