home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 2002 September
/
PCPlus_193_Laplink2000.iso
/
Prog
/
delphi
/
formatstr
/
formatstr.dpr
< prev
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
|
2002-04-28
|
185 b
|
14 lines
program formatstr;
uses
Forms,
fmt in 'fmt.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.