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
- :
- Edit fields
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
Dec 26, 2008
03:48 PM
Edit fields
I have a basic msi project with a custom dialog box. This box has three edit fileds that store PROPERTY1, PROPERTY 2, AND PROPERTY3. I also have a dialog that follows that has a edit field. In that field I want it to read
http://PROPERTY1/
and then store it in a property lets say PROPERTY4.
Is there anyway to do that? I have tried populating the text property with http://[PROPERTY1]/ but that does not seem to work. Any ideas?
Thanks
http://PROPERTY1/
and then store it in a property lets say PROPERTY4.
Is there anyway to do that? I have tried populating the text property with http://[PROPERTY1]/ but that does not seem to work. Any ideas?
Thanks
(1) Reply
Dec 30, 2008
12:35 PM
If I understand correctly, it sounds like PROPERTY4 should be set with a set property control event that runs after PROPERTY1 is defined (i.e. on the first dialog's next button). Set it to the value you described: http://[PROPERTY1]/. Then reference PROPERTY4 directly in the second dialog's edit field. If you need PROPERTY1 to be updated to follow changes to PROPERTY4, you will need to add a control event custom action to parse 4 and update 1.