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
- :
- How can I Limit Features shown in MODIFY
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Jul 26, 2011
03:29 PM
How can I Limit Features shown in MODIFY
How can I hide a feature from displaying while in MODIFY mode? The original feature tree is fine, but in MODIFY mode, I only want the language file choices to display, allowing the adding or removal of a language. I do not want the Help, Doc, etc. features from displaing in maintenance mode.
using install scripting.
Thanks.
using install scripting.
Thanks.
(3) Replies
‎Jul 27, 2011
02:29 AM
One way to do so:
In the OnMaintUIBefore() event, check for MODIFY. This will ensure that the install is running in Modify mode. After the check use FeatureSetData function to deselect the features you do not wish the user to see.
This will modify the tree view and the features deselected will no longer be visible.
In the OnMaintUIBefore() event, check for MODIFY. This will ensure that the install is running in Modify mode. After the check use FeatureSetData function to deselect the features you do not wish the user to see.
This will modify the tree view and the features deselected will no longer be visible.