home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk12 / calldll.pak / CALLDLL.DPR next >
Encoding:
Text File  |  1995-08-24  |  144 b   |  11 lines

  1. program Calldll;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {Form1};
  6.  
  7. begin
  8.   Application.CreateForm(TForm1, Form1);
  9.   Application.Run;
  10. end.
  11.