- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: Are Multi language Unicode license files supported?
- 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
Are Multi language Unicode license files supported?
Hi All
Currently we are using InstallShield 2019 and display an English only license in an Edit field in our SdLicenseEx dialog using the following function:
SdLicense ( szTitle, szMsg, szQuestion, szLicenseFile );
Our license .txt file has been updated to contain translations of the license in all our required languages, included languages outside of the IS group like Kasakh. It therefore has to be encoded in Unicode not ANSI to display all the required characters.
Does IS 2019 support the display of a Unicode .txt file in an Edit Field in the SdLicenseEx dialog using SdLicense ()? If not, is there a recommended approach?
Thanks in advance!
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Solution was to convert to an rtf file, then use SdLicense2Rtf ( szTitle, szOpt1, szOpt2, szLicenseFile, bLicenseAccepted ). Unfortunately the license screen now takes approx 2 minutes to load, probably because the rtf file is so large (2414KB), so I might need another approach.