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

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