home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / BIOREP.PAS < prev    next >
Pascal/Delphi Source File  |  1996-05-08  |  2KB  |  68 lines

  1. {*************************************************}
  2. {*  QuickReport for Delphi                       *}
  3. {*  Demo Report BioRep                           *}
  4. {*                                               *}
  5. {*  Shows how to use memo fields and pictures    *}
  6. {*  in reports                                   *}
  7. {*************************************************}
  8.  
  9.  
  10. unit Biorep;
  11.  
  12. interface
  13.  
  14. uses
  15.   SysUtils, Windows, Messages, Classes, Graphics, Controls,
  16.   Forms, Dialogs, DBCtrls, Quickrep, StdCtrls, ExtCtrls, DB, DBTables;
  17.  
  18. type
  19.   TBioform = class(TForm)
  20.     Table1: TTable;
  21.     DataSource1: TDataSource;
  22.     DetailBand: TQRBand;
  23.     QRDBText1: TQRDBText;
  24.     Biorep: TQuickReport;
  25.     Table1SpeciesNo: TFloatField;
  26.     Table1Category: TStringField;
  27.     Table1Common_Name: TStringField;
  28.     Table1SpeciesName: TStringField;
  29.     Table1Lengthcm: TFloatField;
  30.     Table1Length_In: TFloatField;
  31.     Table1Notes: TMemoField;
  32.     Table1Graphic: TGraphicField;
  33.     DBImage1: TDBImage;
  34.     QRDBText3: TQRDBText;
  35.     QRLabel1: TQRLabel;
  36.     QRDBText4: TQRDBText;
  37.     QRLabel2: TQRLabel;
  38.     QRLabel3: TQRLabel;
  39.     QRDBText5: TQRDBText;
  40.     QRLabel4: TQRLabel;
  41.     TitleBand: TQRBand;
  42.     Image1: TImage;
  43.     QRLabel6: TQRLabel;
  44.     QRLabel7: TQRLabel;
  45.     QRLabel8: TQRLabel;
  46.     QRShape2: TQRShape;
  47.     QRLabel5: TQRLabel;
  48.     QRDBText2: TQRDBText;
  49.     QRBand1: TQRBand;
  50.     QRShape1: TQRShape;
  51.     QRBand2: TQRBand;
  52.     QRSysData1: TQRSysData;
  53.     QRDetailLink1: TQRDetailLink;
  54.   private
  55.     { Private declarations }
  56.   public
  57.     { Public declarations }
  58.   end;
  59.  
  60. var
  61.   Bioform: TBioform;
  62.  
  63. implementation
  64.  
  65. {$R *.DFM}
  66.  
  67. end.
  68.