home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 2000 March
/
pcp161b.iso
/
handson
/
archive
/
Issue150
/
delphi
/
Move1
/
Move1.dpr
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1998-12-16
|
193 b
|
14 lines
program Move1;
uses
Forms,
MoveUnit1 in 'MoveUnit1.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.