PDA

View Full Version : Clarion Accessory Deployment Demo.sb7 for Clarion 7.1



NewsArchive
12-31-2009, 05:38 AM
All 3rd Party Developers,

I have uploaded a new "Clarion Accessory Deployment Demo.sb7" example script
to demonstrate how to install to Clarion 7.0 or Clarion 7.1.

www.lindersoft.com/projects/Clarion_Accessory_Deployment_Demo_C71.zip

Please note: this project requires SetupBuilder 7.1 Build 2819
**PRE-RELEASE** -- do NOT use it with any previous SetupBuilder 6.x or 7.x
version.

Friedrich

--
Friedrich Linder
Lindersoft
www.lindersoft.com
+1.954.252.3910

SetupBuilder is Windows installation -- "point. click. ship"

-- Official Comodo Code Signing and SSL Certificate Partner

NewsArchive
01-02-2010, 02:19 AM
Hi friedrich,

> I have uploaded a new "Clarion Accessory Deployment Demo.sb7" example
> script
> to demonstrate how to install to Clarion 7.0 or Clarion 7.1.
>
> www.lindersoft.com/projects/Clarion_Accessory_Deployment_Demo_C71.zip
>
> Please note: this project requires SetupBuilder 7.1 Build 2819
> **PRE-RELEASE** -- do NOT use it with any previous SetupBuilder 6.x or 7.x
> version.

Great, thank you.

but how about shortcut menu in the Start | Programs | Clarion 7 Accessories
| ... | Product menu on the Windows Start bar than should contains shortcuts
to the examples,
documentation, the uninstall and additional utilities???
Clarion 7 Accessories
or/and
Clarion 7.1 Accessories
or what??


--
gennadi,
http://ingasoftplus.com - Clarion 3rd party add-ons,
http://motleysoft.com - World softfair, buy and sell here!

NewsArchive
01-02-2010, 02:19 AM
Hi gennadi,

> Great, thank you.
>
> but how about shortcut menu in the Start | Programs | Clarion 7
> Accessories | ... | Product menu on the Windows Start bar than should
> contains shortcuts to the examples,
> documentation, the uninstall and additional utilities???
> Clarion 7 Accessories
> or/and
> Clarion 7.1 Accessories
> or what??

That is a decision the Clarion 3rd party community will have to make. We
only provide the technology to install 3rd party products, we do not make
"the rules". But I don't think there is any discussion on it yet (in the
Clarion7 newsgroup).

--
Friedrich Linder
Lindersoft
www.lindersoft.com
+1.954.252.3910

SetupBuilder is Windows installation -- "point. click. ship"

-- Official Comodo Code Signing and SSL Certificate Partner

NewsArchive
01-02-2010, 02:20 AM
Friedrich,

I'm missing some data about this situation. What is the problem? I mean
what is the exact mechanism that cause installs to fail? Is there anything
I need to change in my install scripts?

--
Russell B. Eggen
www.radfusion.com
Clarion developers: www.radfusion.com/devs.htm

NewsArchive
01-02-2010, 02:20 AM
Hi Russ,

> I'm missing some data about this situation. What is the problem? I mean
> what is the exact mechanism that cause installs to fail? Is there
> anything I need to change in my install scripts?

First of all, the new "Clarion 7.1" environment is detected as "Clarion 7.0"
in previous 3rd-party installations. That's because C7 and C71 share the
same registry information.

But quite a few developers have Clarion 7.0 and Clarion 7.1 installed. And
the Clarion 7.x 3rd-party installation might require Clarion 7.0 and 7.1
specific files (e.g. LIB files). All previous installations cannot
auto-detect such a scenario where C71/C70 are installed on the same machine.

If you are sure that your users do not have C7 and C71 installed and/or if
you do not have to install version specific files, then no problem and you
can continue to use your old install images. Otherwise, you have no choice
and you have to recompile your installs with SB71 (so C7 and C71 can be
auto-detected). And depending on the kind of installation method you use,
you have to modify your script to handle C7/C71 installations.

For example, if you have the following script logic in your previous C70
installs:

If %CLA_VER% Equals "Clarion 7.0" Then
! ----- Clarion 7.0 -----

then you have to change it to:

If %CLA_VER% Equals "Clarion 7.0" Or %CLA_VER% Equals "Clarion 7.1" Then
! ----- Clarion 7.x -----

to handle C70/C71 installations.

Does this help?

Friedrich

NewsArchive
01-02-2010, 02:21 AM
Thank you. That filled in the data holes nicely <g>

--
Russell B. Eggen
www.radfusion.com
Clarion developers: www.radfusion.com/devs.htm