【发布时间】:2018-07-10 10:12:27
【问题描述】:
我正在使用LicenseFile=D:\authorized\Builds\Integration\License.rtf 显示许可证页面和程序InitializeWizard();。
问题是在程序InitializeWizard();之后显示了许可页面。有什么方法可以在之前显示它?
procedure InitializeWizard;
begin
{ Create the pages }
UsagePage := CreateInputOptionPage(wpWelcome,
'App setup information', 'How would you like to install App?',
'Would you like to install App as a service?.',
True, False);
UsagePage.Add('Yes');
UsagePage.Add('No');
UsagePage.Values[0] := true;
end;
【问题讨论】: