CheckBox on ReadyToInstall Dialog in Basic MSI in Installshield
I have two product Configuration releases for my MSI, namely Release1 & Release2. I have added a checkbox to the ReadyToInstall Dialog. I want this checkbox to be visible only when I build Release2. Running an Installer from Release1 should di开发者_开发问答splay the usual ReaddyToInstall Dialog Box without showing any CheckBox.
How can I achieve this?
I would approach this by adding a release flag to your releases and a condition (see the Conditions tab in the lower right when you're on the dialog's Behavior node) to hide or show the checkbox if ISReleaseFlags does or does not contain the appropriate flags. You can check contains with the >< operator, per Conditional Statement Syntax.
精彩评论