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
- :
- Re: Uninstalling Message
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
āJan 10, 2008
11:42 AM
Uninstalling Message
Hi,
I am working on InstallscriptMSI project. While Uninstalling the product I am receiving the same message as the one during installing the product. Can any one tell me from where i can change that message from "Installing" to "Uninstalling" during uninstallation of the product?
I am working on InstallscriptMSI project. While Uninstalling the product I am receiving the same message as the one during installing the product. Can any one tell me from where i can change that message from "Installing" to "Uninstalling" during uninstallation of the product?
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
āJan 10, 2008
02:26 PM
Here's what I do.
// Change the status dialog text
hwndStatus = FindWindow ( "#32770", IFX_SETUP_TITLE );
if ( hwndStatus != NULL ) then
SetDlgItemText( hwndStatus, 710, szMsg );
endif;
Set szMsg to whatever you want.
// Change the status dialog text
hwndStatus = FindWindow ( "#32770", IFX_SETUP_TITLE );
if ( hwndStatus != NULL ) then
SetDlgItemText( hwndStatus, 710, szMsg );
endif;
Set szMsg to whatever you want.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
āAug 19, 2008
10:30 AM
They finally added a function to do this in InstallShield 11...
SetStatusExStaticText(szString);
szString
The text to be set as the static text. The following standard strings are available using the SdLoadString function:
IDS_IFX_STATUSEX_STATICTEXT_FIRSTUIāThe InstallShield Wizard is installing %P.
IDS_IFX_STATUSEX_STATICTEXT_MAINTUI_MODIFYāThe InstallShield Wizard is modifying %P.
IDS_IFX_STATUSEX_STATICTEXT_MAINTUI_REPAIRāThe InstallShield Wizard is repairing %P.
IDS_IFX_STATUSEX_STATICTEXT_MAINTUI_REMOVEALLāThe InstallShield Wizard is removing %P.
IDS_IFX_STATUSEX_STATICTEXT_UPDATEUIāThe InstallShield Wizard is updated %VI of %P to version %VS.
e.g. in your OnMaintUIBefore() method, call it like this if the user has selected REMOVEALL:
SetStatusExStaticText(SdLoadString(IDS_IFX_STATUSEX_STATICTEXT_MAINTUI_REMOVEALL));
SetStatusExStaticText(szString);
szString
The text to be set as the static text. The following standard strings are available using the SdLoadString function:
IDS_IFX_STATUSEX_STATICTEXT_FIRSTUIāThe InstallShield Wizard is installing %P.
IDS_IFX_STATUSEX_STATICTEXT_MAINTUI_MODIFYāThe InstallShield Wizard is modifying %P.
IDS_IFX_STATUSEX_STATICTEXT_MAINTUI_REPAIRāThe InstallShield Wizard is repairing %P.
IDS_IFX_STATUSEX_STATICTEXT_MAINTUI_REMOVEALLāThe InstallShield Wizard is removing %P.
IDS_IFX_STATUSEX_STATICTEXT_UPDATEUIāThe InstallShield Wizard is updated %VI of %P to version %VS.
e.g. in your OnMaintUIBefore() method, call it like this if the user has selected REMOVEALL:
SetStatusExStaticText(SdLoadString(IDS_IFX_STATUSEX_STATICTEXT_MAINTUI_REMOVEALL));