During installation, it's possible to update the InnoSetup wizard status text from inside the PascalScript event handler "CurStepChanged(ssPostInstall)" with the following code (http://stackoverflow.com/questions/2514107):

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

This does not work for uninstall. Accessing this property from inside "CurUninstallStepChanged(usUninstall)" fails with the following error:

"Runtime Error: Line 526: Exception: Internal Error: An attempt was made to access WizardForm before it has been created."

Any idea how the InnoSetup wizard status text can be changed during uninstall? Maybe "usUninstall" is too early? But the label is already there and visible in the uninstaller's GUI...

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I found the solution:

UninstallProgressForm.StatusLabel.Caption := 'status update';
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.