Hello,
Hi can I hide the installation folder tab in CofigureDlg, but keep the Features selection dialog?
Thanks,
Dmitry
Yes, in order to achieve this you should use an "Enterprise" or higher project type.I am using the Professional version. Is this something that is only available in the Enterprise version?
No, unfortunately this can be achieved only in an "Enterprise" or higher project type.Is there any other way to do this?
Code: Select all
<ROW Dialog_="ConfigureDlg" Control_="Tab" Event="SpawnDialog" Argument="FolderPage" Condition="( AiTabPage ) AND ( NOT Installed )" Ordering="1"/>
Code: Select all
<ROW Dialog_="ConfigureDlg" Control_="Tab" Event="SpawnDialog" Argument="FolderPage" Condition="( AiTabPage ) AND ( NOT Installed ) AND 1=2" Ordering="1"/>
Daniel wrote:Hello Dmitry,
In order to achieve what you want, using a Professional project type, you can use the following workaround:
- Go to "Dialogs" page and add "ConfigureDlg" dialog.
- Save your project.
- Close Advanced Installer.
- Open your .aip (project file) with a text editor (e.g. Notepad) and edit the following linefrom <COMPONENT cid="caphyon.advinst.msicomp.MsiControlEventComponent"> element to something like this:Code: Select all
<ROW Dialog_="ConfigureDlg" Control_="Tab" Event="SpawnDialog" Argument="FolderPage" Condition="( AiTabPage ) AND ( NOT Installed )" Ordering="1"/>
- Start Advanced Installer, reopen your project and build it.Code: Select all
<ROW Dialog_="ConfigureDlg" Control_="Tab" Event="SpawnDialog" Argument="FolderPage" Condition="( AiTabPage ) AND ( NOT Installed ) AND 1=2" Ordering="1"/>
If you have any questions let us know.
All the best,
Daniel