我在第一行得到Expected Begin
:
if ActiveLanguage = 'English' then
begin
// create the product key page
PkeyPage := CreateInputQueryPage(wpWelcome,
'Type your product key', '',
'You can find the {#SetupSetting("AppName")} product key in the email we sent you. Activation will register the product key to this computer.');
PkeyPage.Add('Product Key:', False);
end;
else
if ActiveLanguage = 'Italian' then
//create the product key page
PkeyPage := CreateInputQueryPage(wpWelcome,
'Inserisci il codice di attivazione', '',
'Puoi trovare il codice di attivazione di {#SetupSetting("AppName")} nell''email ricevuta dopo l''acquisto. L''attivazione registrerà il programma sul tuo PC.');
PkeyPage.Add('Product Key:', False);
end;
我正在尝试根据安装程序中选择的语言显示不同的消息框
答案 0 :(得分:1)
Here您可以看到语法:
if boolean_condition then
begin
statement_one;
statement_two;
end
else
begin
statement_three;
statement_four;
end;
将end; else
更改为end else begin
。