I'm writing an installer that needs to work for multiple product names, versions, etc.
I'd like to use compiler vars to set these values, like this:
Product Name: #CLIENTNAME# Software Installer
But when I do this, the dialogs simply display "#CLIENTNAME# Software Installer" rather than "SomeCompany Software Installer"
Am I doing something wrong, or am I not supposed to use compiler vars in this manner?
Compiler vars and Project Properties
The product name field actually initializes the global, pre-defined script variable $TITLE$. So if you need to update that dynamically, you can just say:
in your setup script (say all the way on top), and it will work fine. Be sure to check the pre-defined variables in the help index and see what other pre-defined variables might be of use to you.
Code: Select all
Set Variable TITLE to #CLIENTNAME# Software Installer
in your setup script (say all the way on top), and it will work fine. Be sure to check the pre-defined variables in the help index and see what other pre-defined variables might be of use to you.
Who is online
Users browsing this forum: No registered users and 104 guests