LoginSignup
1
0

More than 5 years have passed since last update.

Inno Setupのプログレスバーをスクリプトで動かす

Last updated at Posted at 2015-06-20

Inno SetupはPascal言語で色々いじれて面白いのですが、インストール中の進捗を示すプログレスバーをスクリプトから動かせなくて苦労しました。単純に

WizardForm.ProgressGauge.Position := 25;

とかやっても動いてくれません。

WizardForm.ProgressGauge.Min := 0;
WizardForm.ProgressGauge.Max := 100;
WizardForm.ProgressGauge.Position := 25;

のように、MinMaxも同時に指定すると動いてくれます。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0