home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 2000 March
/
pcp161b.iso
/
handson
/
archive
/
Issue160
/
files
/
SyntaxEditor
/
SyntaxEditor.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-10-13
|
324 b
|
18 lines
program SyntaxEditor;
uses
Forms,
main in 'main.pas' {Form1},
syntax in 'syntax.pas',
RichEditUtils in 'RichEditUtils.pas',
editconsts in 'editconsts.pas',
Strutils in 'Strutils.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.