home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 March
/
Chip_1998-03_cd.bin
/
zkuste
/
delphi
/
ruzkomp
/
APITHING.ZIP
/
MyThing.dpr
< prev
next >
Wrap
Text File
|
1997-08-05
|
254b
|
15 lines
program MyThing;
uses
Forms,
MyComponent in 'MyComponent.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'Tim''s APIThing Test Module';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.