home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mastering Visual Basic 5
/
MasteringVisualBasic5.iso
/
olympus
/
ik32_15t
/
delphi2.shr
/
CUTPAST.DPR
< prev
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
|
1996-08-02
|
193 b
|
14 lines
program CutPast;
uses
Forms,
UCutPast in 'UCutPast.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.