home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / imagelib / blob.dp_ / blob.dp
Text File  |  1995-10-01  |  447b  |  19 lines

  1. program Blob;
  2.  
  3. uses
  4.   Forms,
  5.   Ublob in 'UBLOB.PAS' {BlobForm1},
  6.   U_p_size in 'U_P_SIZE.PAS' {Printersize},
  7.   Ufullscr in 'UFULLSCR.PAS' {FullSlide},
  8.   Uabout in 'UABOUT.PAS' {AboutBox};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TBlobForm1, BlobForm1);
  14.   Application.CreateForm(TPrintersize, Printersize);
  15.   Application.CreateForm(TFullSlide, FullSlide);
  16.   Application.CreateForm(TAboutBox, AboutBox);
  17.   Application.Run;
  18. end.
  19.