home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 February / DPPCPRO0299.ISO / February / Delphi / Runimage / DELPHI20 / DEMOS / DOC / AUTOPROJ / MAIN.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-06-10  |  582 b   |  27 lines

  1. unit Main;
  2.  
  3. { This is the main unit of an OleAutomation example. Obviously there is not
  4.   much code here. See MYAUTO.PAS for the core of this application.
  5.  
  6.   For this example to work, you need to run the TestAp program, stored in this
  7.   same directory. Before running TestAp, you should run this program once,
  8.   passing in /regserver as the program's sole parameter. }
  9.  
  10. interface
  11.  
  12. uses
  13.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
  14.  
  15. type
  16.   TForm1 = class(TForm)
  17.   end;
  18.  
  19. var
  20.   Form1: TForm1;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. end.
  27.