How can I hide the file name when install a program?

680 Views Asked by At

I am using InstallShield 2010 to build the installer of my project and I would like to hide the name of files showed while they are transferred to HD:

enter image description here

Can I hide the file name and keep the progress bar? Or even to suppress the window and replace it by another?

Anyone have any idea about how can I do this?

2

There are 2 best solutions below

0
On

You can use "SetStatusWindow" function in installscript to overcome this. An example is in InstallShield site itself: SetStatusWindow Example

0
On

To enable the display of the name and path of the file being installed on the second line of the status bar, call Enable with the INDVFILESTATUS parameter before calling FeatureMoveData.

Enable(STATUSEX);
Disable(INDVFILESTATUS);
...
SetStatusWindow(100, "Setup is complete.");
Disable(STATUSEX);