lidds
Posts: 44
Joined: Thu Jun 14, 2012 11:22 pm

Enable control on button press....

I have a button on my installer that runs a installed exe file, which is fine. However I need to be able to change a progress bar control on the installer to visble once the button has been pressed?

Thanks for your help
mihai.petcu
Posts: 3860
Joined: Thu Aug 05, 2010 8:01 am

Re: Enable control on button press....

Hello,

Here's what you can try:
- set the progress control's "Visible" attribute to False
- for the same control add a Show control condition:

Code: Select all

SHOW_PROGRESS
- for the button control add a published event:

Code: Select all

SHOW_PROGRESS = "true"
This way the progress control will be hidden until the user presses the button.

All the best,
Mihai
Mihai Petcu - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube

Return to “Building Installers”