Quote:
Originally Posted by ffmla
I am testing this in win 10(I only have this).
In the example script ie. Example_DefaultSkin.iss, while compiling(Inno EE 5.5.1) it throws the following exception msg.
Code:
[22:29:28.728] InitializeWizard raised an exception (fatal).
[22:29:28.730] Exception message:
[22:29:28.732] Message box (OK):
Runtime Error (at 301:2942):
Exception "EFOpenError" at address 00497587.
|
found out what the problem was...
Code:
Error:
Memo1.LoadFromfile('C:\Program Files (x86)\Inno Setup 5\license.txt');
Code:
Fix:
[Files]
...
Source: ".\license.txt"; DestDir: "{tmp}"; Flags: dontcopy;
{Code]
...
Memo1.LoadFromfile(ExtractAndLoad('license.txt'));
Code:
Hint:
* Use BlankForm instead of FluentForm for Windows 10.
Example:
#define Windows10
....
#ifdef Windows10
FMXForm.FCreateBlankForm(WizardForm.Handle, ALCoral, '');
#else
FMXForm.FCreateFluent(WizardForm.Handle, True, False, 0.56, 0);
#endif
...
,