home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
imagelib
/
blob.dp_
/
blob.dp
Wrap
Text File
|
1995-10-01
|
447b
|
19 lines
program Blob;
uses
Forms,
Ublob in 'UBLOB.PAS' {BlobForm1},
U_p_size in 'U_P_SIZE.PAS' {Printersize},
Ufullscr in 'UFULLSCR.PAS' {FullSlide},
Uabout in 'UABOUT.PAS' {AboutBox};
{$R *.RES}
begin
Application.CreateForm(TBlobForm1, BlobForm1);
Application.CreateForm(TPrintersize, Printersize);
Application.CreateForm(TFullSlide, FullSlide);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.