cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
rrinblue22
Level 9

InstallScript DialogSetInfo

I'm working with a Pure InstallScript project and trying to set a banner using DialogSetInfo.

DialogSetInfo(DLG_INFO_ALTIMAGE, SUPPORTDIR ^ "banner.bmp", TRUE);

Everything works fine except for the SQLServerSelectLogin dialog where the static text is not being displayed when the banner is displayed.

Labels (1)
0 Kudos
(4) Replies
rrinblue22
Level 9

I hope no one has an answer to this....
0 Kudos
AmitRout
Level 5

It seems the new banner over riding the default banner with the text. Can you please try the following after loading the banner page

CtrlSetText ( szDialogName, nControlID, szText );
It helps to write the static text on the required ControlID.
0 Kudos
rrinblue22
Level 9

Thanks Amit for looking into this.

I couldn't use that as the SQL Login dialog is being triggered by "SQLServerSelectLogin2" and it doesn't have a dialog source code.
Its from internal dll I believe so I cant sneek CtrlSetText in this case.

Any other views on this is appreciated.
0 Kudos
Cary_R
Level 11

I just was directed to this issue myself today.

Here's what I found helped:

1. Navigate to Dialogs view
2. Choose to 'Edit' the "SQLServerSelectLogin(Ex)(2)" dialog
3. Go to the properties of control "ControlId_1200"
4. Change Tab index to 1
0 Kudos