开发者

How to update the InnoSetup Wizard GUI status text from PascalScript code

开发者 https://www.devze.com 2022-12-24 10:46 出处:网络
I execute a lot of custom actions in my InnoSe开发者_运维百科tup script in the CurStepChanged(ssPostInstall) PascalScripting event handler. As these actions take some time to finish, I\'d like to upda

I execute a lot of custom actions in my InnoSe开发者_运维百科tup script in the CurStepChanged(ssPostInstall) PascalScripting event handler. As these actions take some time to finish, I'd like to update the InnoSetup Wizard GUI status text and tell the user what is going on behind the scenes. Something similar that is possible in the [Run] section using the "StatusMsg" parameter. I know that I could use the TOutputProgressWizardPage/CreateOutputProgressPage(), and I did in a previous project, but it's a bit too much overkill to my liking...

Is there a simpler possibility to update the InnoSetup Wizard GUI status text from PascalScripting code with the same effect as the StatusMsg parameter?


Use this from your CurStepChanged handler:

WizardForm.StatusLabel.Caption := 'status update';
0

精彩评论

暂无评论...
验证码 换一张
取 消