home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 February / Chip_2004-02_cd1.bin / program / delphi / navody / d56 / ec1vr2.exe / #setuppath# / Delphi / Prnplot / Rep.pas < prev   
Encoding:
Pascal/Delphi Source File  |  2003-12-09  |  710 b   |  38 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.   TRepForm = class(TForm)
  11.         VividReport: TVividReport;
  12.         VRPage: TVRPage;
  13.         VRBand1: TVRBand;
  14.         VRBand2: TVRBand;
  15.         VRBand4: TVRBand;
  16.         VRPrintProgress: TVRPrintProgress;
  17.         VRPreview: TVRPreview;
  18.         VRPlot: TVRPlot;
  19.         Curve1: TVRPlotCurve;
  20.         Curve2: TVRPlotCurve;
  21.         VRBand3: TVRBand;
  22.         VRBand5: TVRBand;
  23.         VRRepTitle: TVRLabel;
  24.   private
  25.     { Private declarations }
  26.   public
  27.     { Public declarations }
  28.   end;
  29.  
  30. var
  31.   RepForm: TRepForm;
  32.  
  33. implementation
  34.  
  35. {$R *.DFM}
  36.  
  37. end.
  38.