ユーザーがフォルダー選択ページに到達したときにのみメッセージボックスを表示しようとしています。セットアップの最初にメッセージボックスを表示する実際のコードは次のとおりです。
[code]
var ApplicationPath: string;
function GetAppPath(Param: String): String;
begin
RegQueryStringValue(HKLM, 'SOFTWARE\XXX\XXX', 'Install Dir', ApplicationPath)
if ApplicationPath = '' then
begin
MsgBox('Install folder non found', mbError, MB_OK);
result:=ApplicationPath;
end
else
MsgBox('Install folder found in "' + ApplicationPath + '". NOTE: close the program before proceeding.', mbInformation, MB_OK);
result:=ApplicationPath;
end;
end.
次のようなものが必要です:
If (PageId = wpSelectDir) then... [上記のコードを実行]
しかし、本当にどうすればいいのかわかりません。助けてくれてありがとう。