cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
ronjeremy
Level 2

Installshield 2011 & Installscript - supports Unicode or not?

Hello:)

On this screenshots you can see how my Polish installer looks on English Windows XP. On Vista/7 it looks a lot better, but still not perfect. I am using Installshield 2011 Premier and I did simplest Installscript project (with ENPLCZ langs) to exclude my mistakes, although, I've done hundreds of installers. Flexera pompously boasts unicode support for InstallScript projects in the latest version of Installshield, maybe I'm doing something wrong?:confused:
Labels (1)
0 Kudos
(2) Replies
weakness
Level 6

Hmm. Maybe, it is caused by Font rather than string code.

I guess if you launch the simplest installer on Polish machine, this problem doesn't happen...

Anyway, if you want to support Polish on English PC, try to add the following code.

function OnBegin()
begin

DialogSetFont("Arial",8, 0);

end;
0 Kudos
ronjeremy
Level 2

weakness wrote:
Hmm. Maybe, it is caused by Font rather than string code.

I guess if you launch the simplest installer on Polish machine, this problem doesn't happen...

Anyway, if you want to support Polish on English PC, try to add the following code.

function OnBegin()
begin

DialogSetFont("Arial",8, 0);

end;


Thanks! Problem fixed 🙂
0 Kudos