I’m using the standard Visual Studio deployment project and want to remove the text in the banner (the text that says ‘Welcome to the Your Project Setup Wizard’.
I want to remove it because I want a custom banner and don’t want the text written over the banner.
I can’t see any properties in VS to allow this. Can it be done without prodding around in the .MSI?
Cheers,
Steve
You can ‘remove’ the text by removing the Welcome dialog and replacing it with a custom dialog. In VS 2005 –
Then you can add a ‘Textboxes (A)’ dialog (right click the ‘Start’ group and select Add Dialog) to the project, set the visible property for the text boxes to false. Move the Textboxes (A) up to the top of the ‘Start’ sequence.
The properties for this dialog include:
This should allow you to control the look / feel (to a certain extent) of this new ‘Welcome’ page.