Inno Setup:如何将变量从[Code]传递到[Run]

时间:2013-10-10 15:13:17

标签: inno-setup

如何将[Code]部分中的变量传递给Inno Setup中[Run]部分中的参数?

基本上,我想做以下几点。

  1. 在过程InitializeWizard中获取并将用户输入保存到变量。
  2. 将用户输入传递给[Run]部分
  3. 中的可执行文件

    这是我的代码。

    [Run]
    Filename: "someProgram.exe"; Parameters: ??userInput??
    
    [Code]
    procedure InitializeWizard;
    var 
      ConfigPage: TInputQueryWizardPage;
      UserInput: String;
    begin
      { Create the page }
      ConfigPage :=
        CreateInputQueryPage(
          wpWelcome, 'User input', 'User input',
          'Please specify the following information, then click Next.');
    
      { Add items (False means it's not a password edit) }
      ConfigPage.Add('Input here:', False);
      { Set initial values (optional) }
      ConfigPage.Values[0] := ExpandConstant('hello');
      { Read values into variables }
      UserInput := ConfigPage.Values[0];
    end;
    

    感谢。

1 个答案:

答案 0 :(得分:25)

您正在寻找scripted constant。请参阅以下示例:

[Run]
Filename: "SomeProgram.exe"; Parameters: {code:GetParams}

[Code]
var
  ConfigPage: TInputQueryWizardPage;

function GetParams(Value: string): string;
begin
  Result := ConfigPage.Values[0];
end;

procedure InitializeWizard;
begin
  { Create the page }
  ConfigPage :=
    CreateInputQueryPage(
      wpWelcome, 'User input', 'User input',
      'Please specify the following information, then click Next.');
  { Add items (False means it's not a password edit) }
  ConfigPage.Add('Input here:', False);
  { Set initial values (optional) }
  ConfigPage.Values[0] := ExpandConstant('hello');
end;