Install in 10.1 Starter

General TRichView support forum. Please post your questions here
Post Reply
bswift
Posts: 37
Joined: Thu Sep 15, 2005 8:26 pm

Install in 10.1 Starter

Post by bswift »

Does the installer not install in the Starter version? It has added the Library paths but no components on pallet.
Sergey Tkachenko
Site Admin
Posts: 17236
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Re: Install in 10.1 Starter

Post by Sergey Tkachenko »

The Starter edition does not include a command line compiler, so installers cannot compile components.
You will have this problem with any third-party component installer that does not include a compete set of precompiled files.

All the work is done, except for package compilation, you need to do it yourself.
Open each of the package in RAD Studio, right click its name in the Project Manager, and choose "Compile" or "Install" depending on the package.

Compile TRichView\Source\RVPkgD10_1.dproj
Compile TRichView\Source\RVDBPkgD10_1.dproj
Install TRichView\Source\RVPkgD10_1_Dsgn.dproj
Install TRichView\Source\RVDBPkgD10_1_Dsgn.dproj
(if you use a trial version, the packages are in "Trial\10_1\" instead of "Source")

Then
Compile RichViewActions\Source\RichViewActionsD10_1.dproj
Install RichViewActions\Source\RichViewActionsD10_1_Dsgn.dproj

There are also additional packages that you can install: RvHtmlImporter, RVXML, and packages in ThirdParty folder.

Then, if you use ScaleRichView,
Compile ScaleRichView\Source\SRVPkgD10_1.dproj
Compile ScaleRichView\Source\DBSRVPkgD10_1_Dsgn.dproj
Install ScaleRichView\Source\SRVPkgD10_1.dproj
Install ScaleRichView\Source\DBSRVPkgD10_1_Dsgn.dproj
(if you use a trial version, the packages are in "Trial\10_1\" instead of "Source")

Compile SRVControls\Source\SRVControlsD10_1.dproj
Install SRVControls\Source\SRVControlsD10_1_Dsgn.dproj

Then, if you use Report Workshop,
Compile ReportWorkshop\Core\Source\ReportWorkshopD10_1.dproj
Install ReportWorkshop\Core\Source\ReportWorkshopD10_1_Dsgn.dproj
(if you use a trial version, the packages are in "Trial\10_1\" instead of "Source")

Then, if you use Report Workshop, install data providers. There are a lot of them, their packages are in ReportWorkshop\DataProviders\Source\,
for example for FireDAC
Compile ReportWorkshop\DataProviders\Source\RW_FD_D10_1.dproj
Install ReportWorkshop\DataProviders\Source\RW_FD_D10_1_Dsgn.dproj
bswift
Posts: 37
Joined: Thu Sep 15, 2005 8:26 pm

Re: Install in 10.1 Starter

Post by bswift »

Thanks Sergey.....
Post Reply