InnoSetup - 文件夹选择对话框中的文本框名称是什么?

时间:2018-01-26 11:38:13

标签: dialog inno-setup folderbrowserdialog

您可以修改InnoSetup中的默认文件夹选择对话框吗?我主要需要在此对话框中更改文件夹路径文本框。当用户单击“下一步”按钮时,需要检查给定的文件夹路径是否为“C:\ Data1”。如果给出了此路径,则需要将其更改为“C:\ Data”。

1 个答案:

答案 0 :(得分:0)

此解决方案有效,

[code]
function NextButtonClick(CurPageID: Integer): Boolean;
begin
  case CurPageID of
    wpSelectDir:
      begin
        if WizardForm.DirEdit.Text = 'C:\Data1' then 
          WizardForm.DirEdit.Text := 'C:\Data';
      end;
  end;
end;

感谢这些链接,

Get the path in the wpSelectDir before {app} is set Inno Setup

How to allow installation only to a specific folder?

Inno Setup with three destination folders