home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / DELPHI4.EXE / %MAINDIR% / Examples / 3rdParty / QuickReport / QRDemo1 / Qrdemo.dpr next >
Encoding:
Text File  |  1998-11-17  |  159 b   |  13 lines

  1. program qrdemo;
  2.  
  3. uses
  4.   Forms,
  5.   share in 'share.pas' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TForm1, Form1);
  11.   Application.Run;
  12. end.
  13.