私はこの問題を抱えています...私は個人的なメッセージボックスを作成しました...私は英語とスペイン語を非常に面白い方法で入れました...しかし私はインストーラーに1つの言語だけを表示させたいです...のように...メニューセレクタースペイン語...そのメッセージボックスにスペイン語が表示されます...メニューセレクターでイタリア語を選択した場合...そのメッセージボックスにイタリア語が表示されます。
[code]
function NextButtonClick1(PageId: Integer): Boolean;
begin
Result := True;
if (PageId = wpSelectDir) and not FileExists(ExpandConstant('{app}\xxx.exe')) then begin
MsgBox('"Thi App" does not seem to be installed in that folder. Please select the correct folder. [Selecciona la Carpeta de Instalación de la Aplicación]', mbError, MB_OK);
Result := False;
exit;
end;
end;