Archive: Dynamically disable InstallOptions control


Dynamically disable InstallOptions control
Hi all:

Is it possible to disable certain control on the InstallOption pages depending on the value of another
field on that same page? For example can I disable a
text field if the user checks a checkbox or select a radio button? If anyone knows how to do that, I would appreciate it greatly if you can share. Thanks!


Do it with the EnableWindow command in the pages leave function.

For a good example, check out the testnotify.nsi script included with your NSIS installation. (It's located in the NSIS install folder under \examples\InstallOptions.)


Thanks alot!
That's exactly what I am looking for.