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
- :
- Property set in UI sequence not honored in Exec sequence
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
‎Mar 02, 2010
03:06 PM
Property set in UI sequence not honored in Exec sequence
I add MyTestProperty in Property Manager and initialize to the value true.
In the User Interface sequence (before the SetupProgress dialog):
In the Execute sequence (first action):
Is there no way to set a property in the UI sequence and be able to use that value in the Execute sequence?
In the User Interface sequence (before the SetupProgress dialog):
I set MyTestProperty via a Set Property custom action to the value false.
I display MyTestProperty via InstallScript custom action using SprintfBox() and I see that the value is false.
I display MyTestProperty via InstallScript custom action using SprintfBox() and I see that the value is false.
In the Execute sequence (first action):
I display MyTestProperty via InstallScript custom action using SprintfBox() and I see that the value is true.
Is there no way to set a property in the UI sequence and be able to use that value in the Execute sequence?
2 Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Mar 02, 2010
04:04 PM
Works if I use public property MYTESTPROPERTY instead.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Mar 03, 2010
12:54 AM
the property set in UI sequence will not be passed onto exec sequence.
Use SecuredCustomProperty to get the value moved from UI to Exec Sequence.
Use SecuredCustomProperty to get the value moved from UI to Exec Sequence.
