home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
imagelib
/
im_cvrt.dp_
/
im_cvrt.dp
Wrap
Text File
|
1995-10-01
|
398b
|
20 lines
{image conversion utility. }
program Im_cvrt;
uses
Forms,
Bimage in 'BIMAGE.PAS' {ConvertForm1},
Ufullscr in 'UFULLSCR.PAS' {FullSlide},
Uabout in 'UABOUT.PAS' {AboutBox};
{$R *.RES}
begin
Application.CreateForm(TConvertForm1, ConvertForm1);
Application.CreateForm(TFullSlide, FullSlide);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.