Quote:
Originally Posted by KaktoR
Got the same error today, already fixed it
Search for:
/////////////////////////////////////////// LicensePage
replace with this:
Code:
#ifdef License
LicenseImage := TBitmapImage.Create(WizardForm);
with LicenseImage do begin
Name := 'LicenseImage';
Parent := WizardForm.LicensePage;
Left := ScaleX(0);
Top := ScaleY(0);
Width := ScaleX(32);
Height := ScaleY(32);
ExtractTemporaryFile('LicenseImage.bmp');
Bitmap.LoadFromFile(ExpandConstant('{tmp}\LicenseImage.bmp'));
ReplaceColor := $0000ff;
ReplaceWithColor := WizardForm.LicensePage.Color;
end;
#endif
|
yep fixed perfectly, thanks