Hi,
I have 3 optional dialogs in an installer project. I want to add two checkboxes and depending on the user selection the installer should show one ore more of them. I tried to do it like this tutorial:
http://www.advancedinstaller.com/user-g ... ialog.html
and it works fine for each dialog "subtree", if I check only one checkbox. But if I check both checkboxes and want do see all dialogs, it still shows only dialogs from the first checkbox. So there are three dialogs:
dia1
dia2
dia3
this is how it should work:
checkbox1 = true -> show dia1
checkbox2 = true -> show dia2 + dia3
checkbox1 + checkbox2 = true -> show dia1 + dia2 + dia3
I tried to change the condition from ' ShowMigrationDialog = "True" ' to ' ShowMigrationDialog = "True" OR ( ShowMigrationDialog = "True" AND ShowStorageDialog = "True") ' but it still didn't work...
How can I get this to work?
Thank you!
Marian