cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Dean_H
Level 7

Can't Change Banner on top of Dialog Windows in InstallScript MSI

I have an InstallScript MSI project and I'm trying to replace the banner on the top of the Installtion dialogs like the SDLicense2RTF, SDCustomerInfo ect and I have been unsuccessful. I have tried replacing the file ISDialogBanner.idb with my banner file identically named and have even tried removing the file to no avail. I have consulted the Macrovision published document Changing Dialog Box Bitmaps, but have still been unable to change the banner on the dialogs. I have tried adding a bitmap to the dialog property, but is does not appear over the Installshield bitmap. If I move it far enough to the left of the IS bitmap it does appear, but I want to put my company logo in the far right hand corner on the banner. Why is it so hard to change such a simple thing? Any help would be greatly appreciated
Labels (1)
0 Kudos
(2) Replies
RobertDickau
Flexera Alumni

Does the DialogSetInfo function not work?
0 Kudos
Dean_H
Level 7

Yes I just figured it out. I added the following 2 lines of code and my company logo now appears in the top banner of the dialog boxes. Thanks

SdInit ( );
DialogSetInfo(DLG_INFO_ALTIMAGE, SUPPORTDIR ^ "alt.bmp", TRUE);
0 Kudos