home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 February / Chip_2004-02_cd1.bin / program / delphi / navody / d56 / ec1vr2.exe / #setuppath# / Delphi / Prntext / Rep.pas < prev   
Encoding:
Pascal/Delphi Source File  |  2003-12-09  |  653 b   |  37 lines

  1. unit Rep;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   vivrep20, ComCtrls;
  8.  
  9. type
  10.  
  11.   TRepForm = class(TForm)
  12.         VividReport: TVividReport;
  13.         VRPage: TVRPage;
  14.         VRBand1: TVRBand;
  15.         VRBand2: TVRBand;
  16.         VRBand3: TVRBand;
  17.         VRBand4: TVRBand;
  18.         VRPrintProgress: TVRPrintProgress;
  19.         VRPreview: TVRPreview;
  20.         VRLabel1: TVRLabel;
  21.         VRLabel2: TVRLabel;
  22.         VRLabel3: TVRLabel;
  23.   private
  24.     { Private declarations }
  25.   public
  26.     { Public declarations }
  27.   end;
  28.  
  29. var
  30.   RepForm: TRepForm;
  31.  
  32. implementation
  33.  
  34. {$R *.DFM}
  35.  
  36. end.
  37.