Hello Friends, yesterday my client told me to remove all the Installshield Brand text at the left bottom of all dialogs. At first glance, it seems simple, as to just click and remove the Installshield text. But when I tried it, then it was really shocking to notice that the text I want to remove is disabled. Neither the line is enabled.
It was a real headache. Nowhere in the installshield help, nor in many forums, I failed to find any solution. This task was easy to do in Installscript MSI type projects, as there you are having that line and Installshield brand as a control, which you could delete from the control table.
Well, today I got a solution, which will hide Installshield brand, and the line adjoining it.
We will look one by one in different types of projects.
Installscript MSI:
In Installscript MSI type projects, first edit the dialog in which you want to Remove the Installshsield branding as shown below:
Now to put he line from left, we need to create a line control from the Installshield IDE controls toolbar as shown below:
Specify the left coordinates for the line control to 0 and width equal to that of dialog.
Finally the dialog will look like:
So, this way we can remove the Installshield brand name from the dialogs. Hope this post will be very helpful to you to customize your custom dialogs.
It was a real headache. Nowhere in the installshield help, nor in many forums, I failed to find any solution. This task was easy to do in Installscript MSI type projects, as there you are having that line and Installshield brand as a control, which you could delete from the control table.
Well, today I got a solution, which will hide Installshield brand, and the line adjoining it.
We will look one by one in different types of projects.
Installscript MSI:
In Installscript MSI type projects, first edit the dialog in which you want to Remove the Installshsield branding as shown below:
Then, goto Control table in Direct Editor, and remove the entry for ContorlId_7 as shown below:
Then make the width of the line same as the width of the dialog as shown below:
After editing the left coordinates and the width of the line, the design time preview should be like:
Basic MSI:
A Basic MSI dialog will look by default as:
Now we need a final dialog like:
Now the question of concern is how could we achieve it. At first, it all seems to be as simple as selecting and deleting the control, but its not so similar to the steps performed in Installscript MSI project. Here we need to edit the "Control" table in Direct Editor.
By default values for Branding1 and Branding2 controls are shown below:
We need to edit attributes value for Branding1 from 3 to 2 and value for Branding2 from 65537 to 65536 as shown below:
Now, if you test the installer dialog then it will look like:
Specify the left coordinates for the line control to 0 and width equal to that of dialog.
Finally the dialog will look like:
So, this way we can remove the Installshield brand name from the dialogs. Hope this post will be very helpful to you to customize your custom dialogs.