home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Format Collection 48
/
SENT14D.ISO
/
tech
/
delphi
/
disk15
/
imagview.pak
/
IMAGVIEW.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-08-24
|
267 b
|
15 lines
program Imagview;
uses
Forms,
Imagewin in 'IMAGEWIN.PAS' {ImageForm},
Viewwin in 'VIEWWIN.PAS' {ViewForm};
{$R *.RES}
begin
Application.CreateForm(TImageForm, ImageForm);
Application.CreateForm(TViewForm, ViewForm);
Application.Run;
end.