home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / bdedll.pak / DLLPROJ1.DPR < prev    next >
Encoding:
Text File  |  1995-08-24  |  285 b   |  19 lines

  1. library Dllproj1;
  2.  
  3. uses
  4.   Dllunit1 in 'DLLUNIT1.PAS' {DllForm1};
  5.  
  6. exports
  7.   UseDll,
  8.   ExitDll,
  9.   ViewTable;
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14. { Remember to remove the generated application control invocations
  15.   Application.CreateForm(TDllForm1, DllForm1);
  16.   Application.Run;
  17. }
  18. end.
  19.