ReportBuilder wrapper for RichView v1.12.1
Requires:
  RichView 10.13+
  Tested with ReportBuilder Professional 7.01

===================================================================

Installation:

1. Make sure that RichView and ReportBuilder are installed,
  and paths to their files are listed in Tools | Environment options,
  Library, Library paths.
2. For Delphi6, install rvrbD6.dpk
   For Delphi7, install rvrbD7.dpk
   For other versions of Delphi/C++Builder, create a new
   package and add all pas-files in this directory into it.
   (please send me this package for including
    in installation - I do not have RB for all versions
    of Delphi/C++Builder, so I cannot create packages myself)
3. Include ppRichView in uses of one of units of your project.
4. If you want to create a custom editor ("Edit" of popup menu),
  see the instructions in ppRichViewCustomEd.pas.
===================================================================
Enabling support for Pragnaan's ExportDevices
  (http://www.pragnaan.com)
1. Open ppRichView.pas, remove dot from the line
  {.$DEFINE RV_USE_PRAGNAAN}
2. If you use PRO version of TExportDevices, remove dot
  from the line
  {.$DEFINE RV_PRAGNAAN_PRO}
===================================================================
Notes about Pragnaan's TExportDevices
- export to RTF: if the global variable RVppsInRTFAsImages
  is False (default), TRichView is exported as RTF*.
  Otherwise, as Metafile images.
- export to PDF: TRichView is exported as Metafile images.
- export to Excel:
  - in standard version: TRichView is exported as RichText
  (TExportDevices convert it to plain text)
  - in pro version: if PsRBExcelSettings.RichTextEncodingType=rtPlainText,
   TRichView is exported as RichText (TExportDevices convert
   it to plain text). If it is equal to rtImage, TRichView is
   exported as metafile image (make sure that PsRBExcelSettings.IncludeImages
   is True)
- export to other devices: TRichView is exported as bitmaps.

Notes:
  *: RTFs created by TRichView are processed by TExportDevices,
  and many saved formatting properties are removed in the
  resulting RTF.
===================================================================
Enabling support for Waler's ExtraDevices
  (http://www.waler.com)
Uncomment {$DEFINE USERICHVIEW} in TXDEFS.pas; if there is no such
 define there, contact the ExtraDevices developer for updated version.
===================================================================
History:

v1.12.1 (2008-10-21) fix
v1.12 (2008-09-27) compatibility with RichView v10.13
v1.11 (2007-04-28) saved pages can be drawn even of the source report is destroyed
v1.10 (2007-04-12) compatibility with RichView v1.9.37
...
v1.6 Support for Waler's ExtraDevices
     (http://www.waler.com)
     Support for RvHtmlImporter (for TppDBRichView)
v1.4 Support for Pragnaan's ExportDevices
     (http://www.pragnaan.com)
v1.3 fix: numbering reset on each page and others
v1.2 fix: margins and background were not saved
v1.1 bug fix (crush under Win9x/ME)
v1.0 first stable release