home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / full / delphi / DELPHI16 / RUNIMAGE / DELPHI / DEMOS / DOC / GRAPHEX / 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.