home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / Runimage / Delphi50 / Help / Examples / Bitmap / bitmap.dpr next >
Encoding:
Text File  |  1999-08-11  |  198 b   |  14 lines

  1. program bitmap;
  2.  
  3. uses
  4.   Forms,
  5.   bmpformu in 'bmpformu.pas' {BmpForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TBmpForm, BmpForm);
  12.   Application.Run;
  13. end.
  14.