home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Quickrpt / Qr3 / history.pas < prev    next >
Pascal/Delphi Source File  |  1999-08-11  |  1KB  |  40 lines

  1. { :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2.   :: QuickReport 3.0 for Delphi 3.0/4.0/5.0                  ::
  3.   ::                                                         ::
  4.   :: Simple report for print the contents of a stringlist    ::
  5.   ::                                                         ::
  6.   :: Copyright (c) 1995-1999 QuSoft AS                       ::
  7.   :: All Rights Reserved                                     ::
  8.   ::                                                         ::
  9.   :: web: http://www.qusoft.com  fax: +47 22 41 74 91        ::
  10.   ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: }
  11. unit history;
  12.  
  13. interface
  14.  
  15. uses
  16.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  17.   QuickRpt, Qrctrls, ExtCtrls;
  18.  
  19. type
  20.   TfrmHistory = class(TForm)
  21.     QuickRep1: TQuickRep;
  22.     DetailBand1: TQRBand;
  23.     QRMemo1: TQRMemo;
  24.     PageHeaderBand1: TQRBand;
  25.     QRSysData1: TQRSysData;
  26.   private
  27.     { Private declarations }
  28.   public
  29.     { Public declarations }
  30.   end;
  31.  
  32. var
  33.   frmHistory: TfrmHistory;
  34.  
  35. implementation
  36.  
  37. {$R *.DFM}
  38.  
  39. end.
  40.