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 to change the INSTALLDIR value?
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
‎Nov 02, 2010
09:50 AM
How to change the INSTALLDIR value?
Hi,
I am using customerInformation Dialog. There are two radio buttons. One is to indicate ALL user installation and other is to indicate current user.
When user selects ALL user radio button I want to set INSTALLDIR value to some path and when user selects current user radio button, i want set INSTALLDIR value to some other path(different that ALL user).
How do I do it?
Thanks
I am using customerInformation Dialog. There are two radio buttons. One is to indicate ALL user installation and other is to indicate current user.
When user selects ALL user radio button I want to set INSTALLDIR value to some path and when user selects current user radio button, i want set INSTALLDIR value to some other path(different that ALL user).
How do I do it?
Thanks
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 19, 2011
05:24 AM
I think better solution will be creating a new dialog with the Radio Button Group and an Edit Field for Destination Path.
The below link has the code for handling Radio Button value.
http://community.flexerasoftware.com/showthread.php?t=185564&highlight=RadiobuttonGroup
Thanks!!
The below link has the code for handling Radio Button value.
http://community.flexerasoftware.com/showthread.php?t=185564&highlight=RadiobuttonGroup
Thanks!!
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 02, 2012
06:54 AM
D_Hegde wrote:
Hi,
I am using customerInformation Dialog. There are two radio buttons. One is to indicate ALL user installation and other is to indicate current user.
When user selects ALL user radio button I want to set INSTALLDIR value to some path and when user selects current user radio button, i want set INSTALLDIR value to some other path(different that ALL user).
How do I do it?
Thanks
Hi..
You just do one thing. Take one Radio button group. Set the property of that to "InstallDir". Now set the value of bot radio buttons to the path whichever you wants.
EX.
rbtngrpSetInstallDirPath - Radio button group (Property = INSTALLDIR)
GroupMember1 --> Value = "c:\Program Files\Path1\"
GroupMember2 --> Value = "D:\Path2\"
So it will automatically change the path as per the selection.:)