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

  1. { :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2.   :: QuickReport 3.0 for Delphi 3.0/4.0/5.0                  ::
  3.   ::                                                         ::
  4.   :: Basic Master/Detail report with group bands             ::
  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 basicmd;
  12.  
  13. interface
  14.  
  15. uses
  16.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  17.   Db, DBTables, ExtCtrls, QuickRpt, Qrctrls;
  18.  
  19. type
  20.   TfrmBasicMD = class(TForm)
  21.     QuickRep1: TQuickRep;
  22.     dsCustomer: TDataSource;
  23.     tbCustomer: TTable;
  24.     DetailBand1: TQRBand;
  25.     QRSubDetail1: TQRSubDetail;
  26.     QRDBText1: TQRDBText;
  27.     QRDBText2: TQRDBText;
  28.     qryOrders: TQuery;
  29.     QRGroup1: TQRGroup;
  30.     QRDBText3: TQRDBText;
  31.     ColumnHeaderBand1: TQRBand;
  32.     QRLabel1: TQRLabel;
  33.     QRLabel2: TQRLabel;
  34.     QRLabel3: TQRLabel;
  35.     QRDBText4: TQRDBText;
  36.     QRLabel4: TQRLabel;
  37.     QRBand1: TQRBand;
  38.     QRExpr1: TQRExpr;
  39.     QRLabel5: TQRLabel;
  40.   private
  41.     { Private declarations }
  42.   public
  43.     { Public declarations }
  44.   end;
  45.  
  46. var
  47.   frmBasicMD: TfrmBasicMD;
  48.  
  49. implementation
  50.  
  51. {$R *.DFM}
  52.  
  53. end.
  54.