I'm creating installers to run on Windows Embedded Standard (which is basically Windows XP Embedded). However, on these XP devices, the installer displays with a horizontally squished window.
This is what an installer built with Inno Setup 4 looks like:
And this is what an installer built with Inno Setup 5 installer looks like:
Inno Setup is the only program I've ever had this sort of trouble with. Any ideas on how I can get the installer window to show up so that the text is visible? I don't care if it's maximized or hardcoded or whatever -- I just need the window to show up with a visible size. Anyone have ideas?
[Code]
section:procedure InitializeWizard(); begin Log(Format('X=%d Y=%d', [ScaleX(10), ScaleY(10)])); end;
What output would it produce in the log? – Martin PrikrylLog(Integer(FontExists('Microsoft Sans Serif')))
andLog(Integer(FontExists('MS Sans Serif')))
? – Martin Prikryl