14
[Code]
セクションの変数をInno Setupの[Run]
セクションのパラメータに渡すにはどうすればよいですか?Inno Setup:[コード]から[実行]に変数を渡す方法
基本的には、次のようにしたいと思います。
- プロシージャ内の変数へのユーザー入力を取得して保存します。
InitializeWizard
。 - は、ここに私のコードです
[Run]
セクション
に実行可能ファイルへのユーザー入力を渡します。
[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;
ありがとうございます。
TLama、これは私が必要としていたものです。出来た。どうもありがとうございました。 – wcc