cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
ralphster
Level 6

How to change or remove the title at the very top of the installshield dialog box

Jump to solution

I am working on an InstallScript Project. When the project runs, my custom dialog boxes are displayed in succession. At the top of each dialog is my project name and the words "InstallShield Wizard".

Is there a way to change the title at the very top of the dialog box? Or is it possible to delete it? I would prefer just to change it, and not delete it.

 

Labels (1)
0 Kudos
(1) Solution
Varaprasad
Level 7 Flexeran
Level 7 Flexeran

One way you can do this from your script  as below

case DLG_INIT:
hwndDlg = CmdGetHwndDlg("<custom DialogName">);
SetWindowText(hwndDlg, "Custom Title");

View solution in original post

0 Kudos
(1) Reply
Varaprasad
Level 7 Flexeran
Level 7 Flexeran

One way you can do this from your script  as below

case DLG_INIT:
hwndDlg = CmdGetHwndDlg("<custom DialogName">);
SetWindowText(hwndDlg, "Custom Title");

0 Kudos