home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 2000 March
/
pcp161b.iso
/
handson
/
archive
/
Issue158
/
delphi
/
RichEditTest
/
StrUtilsTest.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
|
1999-08-09
|
227 b
|
15 lines
program StrUtilsTest;
uses
Forms,
strtest in 'strtest.pas' {Form1},
Strutils in 'Strutils.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.