home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Expert 29
/
Pce29cd.iso
/
RUNIMAGE
/
DELPHI40
/
DEMOS
/
ACTIVEX
/
OLEAUTO
/
AUTOCTRL
/
AUTOCTRL.DPR
< prev
next >
Wrap
Text File
|
1998-06-16
|
192b
|
14 lines
program AutoCtrl;
uses
Forms,
AutoCtl in 'AutoCtl.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.