Is there any event/function like CurInstallProgressChanged
for progressbar with CurProgress
and MaxProgress
values in Uninstall form in Inno Setup?
标签:
inno-setup
相关问题
- Inno Setup - Run InstallUtil from .Net 4.5 Locatio
- ISCC - /D compiler-parameter seems to have no effe
- Setting DestDir from Inno Pascal?
- Unpin app from taskbar, startmenu using Inno Setup
- How to restrict user input of the directory edit b
相关文章
- In inno setup how to set the unins000.exe with pro
- Is it possible to create checkbox tree view in Inn
- How to add a region drop-down in Inno Setup?
- Signing installer of my program generated by Inno
- How to check 64/32-bit in Inno setup
- Inno Setup - How to create checkboxes at finished
- Inno Setup - BorderIcons dropdown menu
- Inno Setup - How to display a message after instal
There's no native support for this.
What you can do is to setup a timer and watch for changes in the
UninstallProgressForm.ProgressBar.Position
.Timer is tricky too. Again, there's no native support. You can use the InnoTools InnoCallback DLL library. But using an external DLL library from an uninstaller is tricky too. See (yours) Load external DLL for uninstall process in Inno Setup.
The code may be like:
For another solution (better but more complicate to implement), see How keep uninstall files inside uninstaller?