UPGRADE process

General TRichView support forum. Please post your questions here
Post Reply
TonyBlom
Posts: 14
Joined: Sun Dec 15, 2013 12:17 pm

UPGRADE process

Post by TonyBlom »

HI. I wish to download and install the latest. Also, my TRIchView components have become a bit messed up with different versions of the Demos to the Components and so on.

IM a licensed user - licensed to Verion 15

Id like to clean out al the old and install with the latest

I have Delphi 7 and Delphi XE2 installed,

1. Is there an article that describes how to do the upgrade ?
2. How can I check the version of my RV components ? (I have SRV also)

Thanks,

Tony
Sergey Tkachenko
Site Admin
Posts: 17310
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Post by Sergey Tkachenko »

1) http://www.trichview.com/install-faq.html
2)

- TRichView: RVStr.pas, RVVersion constant, such as

Code: Select all

RVVersion = 'v14.12';
The version is written in readme.txt too.
When installed, the version is displayed in TRichView and TRichViewEdit components at design time.

- RichViewActions
The version in RVActionsReg.pas, in the line like

Code: Select all

reg.WriteString('Actions_Version', 'v4.5.6');
The version is written in history.txt too.

- ScaleRichView
The version is at the beginning of SclRView.pas, SRV_VERSION constant, like

Code: Select all

SRV_VERSION = 'v5.9.3';
When installed, you can see value of TSRichViewEdit.Version property in the Object Inspector.
Post Reply