home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / graphex.pak / GRAPHEX.DPR < prev    next >
Encoding:
Text File  |  1995-08-24  |  258 b   |  15 lines

  1. program Graphex;
  2.  
  3. uses
  4.   Forms,
  5.   Graphwin in 'GRAPHWIN.PAS' {Form1},
  6.   Bmpdlg in 'BMPDLG.PAS' {NewBMPForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.CreateForm(TNewBMPForm, NewBMPForm);
  13.   Application.Run;
  14. end.
  15.