home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / GRAPHEX.DPR < prev    next >
Text File  |  1996-05-08  |  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.