Page 1 of 1

Install in 10.1 Starter

Posted: Mon Mar 27, 2017 9:46 pm
by bswift
Does the installer not install in the Starter version? It has added the Library paths but no components on pallet.

Re: Install in 10.1 Starter

Posted: Tue Mar 28, 2017 9:34 am
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

Re: Install in 10.1 Starter

Posted: Tue Mar 28, 2017 6:10 pm
by bswift
Thanks Sergey.....