home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 December
/
Chip_2001-12_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d3456
/
LSPICEDT.ZIP
/
LsPictureExplorer
/
LsPictureExplorer.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
2001-04-08
|
342 b
|
16 lines
program LsPictureExplorer;
uses
Forms,
LsPicEditorMain in 'LsPicEditorMain.pas' {PEMainForm},
LsPicEditorView in 'LsPicEditorView.pas' {PEViewForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TPEMainForm, PEMainForm);
Application.CreateForm(TPEViewForm, PEViewForm);
Application.Run;
end.