- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: how to change dialog box title for sdWelcom dialog box
- 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
how to change dialog box title for sdWelcom dialog box
If I call one of the dialog boxes provided by InstallShield, how can I change the title at the very top of the dialog box?
For example if I call the below dialog box
nresult =sdAskDestPath(szTitle,szMsg,szDir,0)
None of the input parameters to sdAskDestPath will change to title of the dialog box. So how do I do that?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
For any particular dialog:
hwndDlg = CmdGetHwndDlg("<DialogName>");
SetWindowText(hwndDlg, "Custom Title");
OR
For all dialogs:
try setting IFX_SETUP_TITLE in your script as mentioned in the below article
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Thanks for the help. I can change change part of the header title, but right after it is displayed the words :
"Install Shield Wizard". How do I get rid of "InstallShield Wizard"?
IFX_PRODUCT_DISPLAY_NAME = "Crostini Plus";
Sprint(DFX_SETUP_TITLE,SdLoadString(IDS_DFX_FORMAT_SETUP_TITLE),IFX_PRODUCT_DISPLAY_NAME )
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Directly set IFX_SETUP_TITLE to desired value as below.
IFX_SETUP_TITLE = "Crostini Plus";
Do not use Sprintf statement as it appends "InstallWizard" string.