This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- How to change or remove the title at the very top of the installshield dialog box
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 13, 2019
03:35 PM
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.
(1) Solution
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 13, 2019
11:34 PM
One way you can do this from your script as below
case DLG_INIT:
hwndDlg = CmdGetHwndDlg("<custom DialogName">);
SetWindowText(hwndDlg, "Custom Title");
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 13, 2019
11:34 PM
One way you can do this from your script as below
case DLG_INIT:
hwndDlg = CmdGetHwndDlg("<custom DialogName">);
SetWindowText(hwndDlg, "Custom Title");