我试图仅在用户到达文件夹选择页面时显示消息框,以下是在设置开始时显示消息框的实际代码:
[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... [运行上面的代码]
但我真的不知道如何,谢谢你的帮助。