home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Expert 29
/
Pce29cd.iso
/
RUNIMAGE
/
DELPHI40
/
DEMOS
/
IMAGVIEW
/
IMAGVIEW.DPR
< prev
next >
Wrap
Text File
|
1998-06-16
|
267b
|
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.