cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
drewdy
Level 4

Multilang dialog conditional checkbox

I have a multilang installer that has different layouts for each language. On the final dialog we have a checkbox and text box to load the readme.

The problem is: the readme is only in english. Is there a way to remove or make these two boxes invisible on non-english layouts without creating a whole new dialog?
Labels (1)
0 Kudos
(2) Replies
Gvarma
Level 7

drewdy wrote:
I have a multilang installer that has different layouts for each language. On the final dialog we have a checkbox and text box to load the readme.

The problem is: the readme is only in english. Is there a way to remove or make these two boxes invisible on non-english layouts without creating a whole new dialog?


If you are using MSI type of project then it is very easy, go to your FinishSucess (something like this) dialog box, select the check box (you could also just delete check box and it wouldnt have any negative impact on your installer) and then select property Enable as FALSE VISIBLE as false.


HTH
0 Kudos
Gvarma
Level 7

Gvarma wrote:
If you are using MSI type of project then it is very easy, go to your FinishSucess (something like this) dialog box, select the check box (you could also just delete check box and it wouldnt have any negative impact on your installer) and then select property Enable as FALSE VISIBLE as false.


HTH


one more thing, in the controls of dialog box (which is under Dialog etc) you could select the name asssigned to the same check box and in condtion just added LANGUAGE="English", this way you check box wud be visible ONLY if user selects language as English.

HTH"
0 Kudos