Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set the status message in [Code] Section of Inno install script?

I know that StatusMsgcan only be used in the [Run] selection. I want to use the same in the [Code] Selection, Please Help me to solve this,

Thanks in advance, Regards Samuel J

like image 270
SamuelJames84 Avatar asked Dec 23 '11 04:12

SamuelJames84


1 Answers

You can change the status label contents at runtime using:

WizardForm.StatusLabel.Caption := 'Intalling WibbleTech Widget'

See the Support classes reference for the full list of controls and properties you can change.

like image 186
Deanna Avatar answered Oct 14 '22 22:10

Deanna