Inno Setup中CreateInputDirPage的默认值

时间:2016-09-20 01:53:03

标签: inno-setup

以下内容直接来自http://www.jrsoftware.org/ishelp/index.php?topic=isxfunc_createinputdirpage

{ Create the page }
Page := CreateInputDirPage(wpWelcome,
  'Select Personal Data Location', 'Where should personal data files be stored?',
  'Personal data files will be stored in the following folder.'#13#10#13#10 +
  'To continue, click Next. If you would like to select a different folder, click Browse.',
  False, 'New Folder');

{ Add item (with an empty caption) }
Page.Add('');
Page.Add('');

Page.Values[1] := 'DefaultValue';

这会创建一个包含两个文本框的页面。第一个文本框为空,第二个文本框为“DefaultValue”,其前面是当前目录。

如何创建一个没有前置当前目录的默认值?

1 个答案:

答案 0 :(得分:1)

如果使用相对路径,Inno Setup会相对于当前工作目录解析它(就像所有Windows应用程序一样)。

改为使用绝对路径。

Page.Values[1] := 'C:\path\to\default\folder';