home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Doc / Graphex / graphex.dpr < prev    next >
Text File  |  1999-08-11  |  258b  |  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.