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: Project assistant default project
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 25, 2012
06:19 AM
Project assistant default project
Hi,
i have created a simple project using assistant, and i want to remove/suppress unused screens like setup type, customer information...
is this possible,
i have created installscript msi project and am using installshield 2010.
i need to remove these dialogs, please help me out ...
Thanks in advance ...
i have created a simple project using assistant, and i want to remove/suppress unused screens like setup type, customer information...
is this possible,
i have created installscript msi project and am using installshield 2010.
i need to remove these dialogs, please help me out ...
Thanks in advance ...
(5) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 26, 2012
01:08 AM
Hello.
InstallScript and InstallScript MSI Project Project assistant does not support changing dialog setting.
You have to change the installscript code directly.
1. Select [Installation Designer] [Behavior and Logic] [InstallScript] [Setup.rul]
2. Select [Before Move Data]-[OnFirstUIBefore]
3. If you do not want to display Setup type dialog, then delete the following code.
InstallScript and InstallScript MSI Project Project assistant does not support changing dialog setting.
You have to change the installscript code directly.
1. Select [Installation Designer] [Behavior and Logic] [InstallScript] [Setup.rul]
2. Select [Before Move Data]-[OnFirstUIBefore]
3. If you do not want to display Setup type dialog, then delete the following code.
Dlg_SetupType:
szTitle = "";
szMsg = "";
nResult = SetupType2(szTitle, szMsg, "", nSetupType, 0);
if (nResult = BACK) then
goto Dlg_SdRegisterUser;
else
nSetupType = nResult;
if (nSetupType != CUSTOM) then
nvSize = 0;
FeatureCompareSizeRequired(MEDIA, INSTALLDIR, nvSize);
if (nvSize != 0) then
MessageBox(szSdStr_NotEnoughSpace, WARNING);
goto Dlg_SetupType;
endif;
bCustom = FALSE;
goto Dlg_SQL;
else
bCustom = TRUE;
endif;
endif;
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 27, 2012
12:32 AM
Hi,
Thanks a lot for clarifications.
setup.rul only have code which i added, there is no default code there.
code section highlighted by you in not there.
Thanks.
Thanks a lot for clarifications.
setup.rul only have code which i added, there is no default code there.
code section highlighted by you in not there.
Thanks.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 27, 2012
12:34 AM
Hi,
do we need to change some project settings to add code for default dialogs available.
Thanks.
do we need to change some project settings to add code for default dialogs available.
Thanks.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 30, 2012
02:30 AM
Hello.
Did you do that step?
Did you do that step?
2. Select [Before Move Data]-[OnFirstUIBefore]
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 30, 2012
05:56 AM
thanks a lot.
i have added this now and its working file.
thanks 🙂
i have added this now and its working file.
thanks 🙂
