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
- :
- Howto: programmatically define what features to install
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 14, 2008
09:16 PM
Howto: programmatically define what features to install
Hello,
I have two features in my installshield project and it does not make any sence to display user overwhelmed CustomSetup dialog. I want rather display something very simple - dialog with 2 checkboxes. Each checkbox is responcible for installation of one specific feature.
Each checkbox sets its property - so I have checkbox value (checked/unchecked), but how can I transform that value to something that will make feature to install or not install.
Should I create custom action to set some properties manually?
What are those properties?
Thank You.
I have two features in my installshield project and it does not make any sence to display user overwhelmed CustomSetup dialog. I want rather display something very simple - dialog with 2 checkboxes. Each checkbox is responcible for installation of one specific feature.
Each checkbox sets its property - so I have checkbox value (checked/unchecked), but how can I transform that value to something that will make feature to install or not install.
Should I create custom action to set some properties manually?
What are those properties?
Thank You.
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 14, 2008
09:50 PM
Perhaps look into using the Remove and AddLocal control events on the Next button of your dialog box?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 15, 2008
02:13 AM
2 things
1) As rebert mentioned use addlocal and the feature name.
2) Also the installlevel of each feature should be higher than the installers INSTALLLEVEL property filed. (you can see this in property manager)
1) As rebert mentioned use addlocal and the feature name.
2) Also the installlevel of each feature should be higher than the installers INSTALLLEVEL property filed. (you can see this in property manager)
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 15, 2008
08:41 PM
Thank you guys. It worked.