home *** CD-ROM | disk | FTP | other *** search
- unit Main;
-
- { This is the main unit of an OleAutomation example. Obviously there is not
- much code here. See MYAUTO.PAS for the core of this application.
-
- For this example to work, you need to run the TestAp program, stored in this
- same directory. Before running TestAp, you should run this program once,
- passing in /regserver as the program's sole parameter. }
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
-
- type
- TForm1 = class(TForm)
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- end.