home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Plus! (NZ) 2001 June
/
HDC50.iso
/
Info
/
Extras
/
Jpeg
/
TEST
/
TESTPROJ.DPR
< prev
next >
Wrap
Text File
|
1999-08-11
|
188b
|
14 lines
program testproj;
uses
Forms,
test1 in 'test1.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.