This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Make 2 features mutually exclusive
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page

Anonymous
Not applicable
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jun 14, 2010
08:22 AM
Make 2 features mutually exclusive
Is there a way to make 2 features mutually exclusive without using scripts, so that the user can choose either feature but not both?
1 Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jun 14, 2010
09:31 AM
Hi,
I think it's possible to do that with a little custom action which is called on the controlEvent of the tree in the Dialog box CustomSetup (where the user can choose the features to install)
(but there is some code to write, is it a problem ?)
I imagine something like that :
When there is a modification in the feature tree, the custom action is called. (DoAction)
This one do something like that :
If 0 < install level of Feature1 <= 100 then
install level of Feature2 = 0
If 0 < install level of Feature2 <= 100 then
install level of Feature1 = 0
I hope you will understand me (my english may be really bad, sorry :cool: )
I think it's possible to do that with a little custom action which is called on the controlEvent of the tree in the Dialog box CustomSetup (where the user can choose the features to install)
(but there is some code to write, is it a problem ?)
I imagine something like that :
When there is a modification in the feature tree, the custom action is called. (DoAction)
This one do something like that :
If 0 < install level of Feature1 <= 100 then
install level of Feature2 = 0
If 0 < install level of Feature2 <= 100 then
install level of Feature1 = 0
I hope you will understand me (my english may be really bad, sorry :cool: )
