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

前端 未结 1 1267
有刺的猬
有刺的猬 2021-01-12 09:53

I execute a lot of custom actions in my InnoSetup script in the CurStepChanged(ssPostInstall) PascalScripting event handler. As these actions take some time to finish, I\'d

相关标签:
1条回答
  • 2021-01-12 10:06

    Use this from your CurStepChanged handler:

    WizardForm.StatusLabel.Caption := 'status update';
    
    0 讨论(0)
提交回复
热议问题