I have a requirement where by I need to show the license agreement according to the OS language. The localized license agreements (.rtf) are kept on a server.
I have created a custom action to detect OS language and download the respective license agreement, but how can I show the localized license agreement in the license agreement dialog?
I have all the dialog set files (.wxs) . I am using Wix_Minimal dialog set.
I tried changing the following lines in WelcomeEulaDlg.wxs
<Control Id="LicenseText" Type="ScrollableText" X="130" Y="36" Width="226" Height="162" Sunken="yes" TabSkip="no">
<Text SourceFile="!(wix.WixUILicenseRtf=$(var.licenseRtf))" />
</Control>
to
<Control Id="LicenseText" Type="ScrollableText" X="130" Y="36" Width="226" Height="162" Sunken="yes" TabSkip="no" Text="[MyPropertyConatingRTFData]">
</Control>
but, nothing shows up in the license agreement text.
How can I set this text?