wix/mysql_common_ui.wxs (989 lines of code) (raw):
<!-- *****************************************************************************************
Copyright (c) 2007, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0, as
published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms, as
designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
Without limiting anything contained in the foregoing, this file,
which is part of Connector/ODBC, is also subject to the
Universal FOSS Exception, version 1.0, a copy of which can be found at
https://oss.oracle.com/licenses/universal-foss-exception.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-->
<Include xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Property Id="InstallPath2" Value="dummy" />
<UI>
<DialogRef Id="LicenseAgreementDlg" />
<Property Id="ErrorDialog" Value="SetupErrorDialog" />
<Property Id="DefaultUIFont" Value="Tahoma8" />
<!-- *****************************************************************************************
Setup Error Dialog
-->
<!-- The four required dialog boxes -->
<Dialog Id="SetupErrorDialog" Y="10" Width="270" Height="110" Title="[ProductName] Installer Information" ErrorDialog="yes">
<Control Id="ErrorText" Type="Text" X="50" Y="15" Width="200" Height="50" TabSkip="no">
<Text Value="<error text goes here><error text goes here><error text goes here><error text goes here><error text goes here><error text goes here><error text goes here><error text goes here><error text goes here><error text goes here><error text goes here>" />
</Control>
<Control Id="Y" Type="PushButton" X="192" Y="80" Width="66" Height="17" TabSkip="yes" Text="&Yes">
<Publish Event="EndDialog" Value="ErrorYes" />
</Control>
<Control Id="N" Type="PushButton" X="192" Y="80" Width="66" Height="17" TabSkip="yes" Text="&No">
<Publish Event="EndDialog" Value="ErrorNo" />
</Control>
<Control Id="A" Type="PushButton" X="192" Y="80" Width="66" Height="17" TabSkip="yes" Text="&Abort">
<Publish Event="EndDialog" Value="ErrorAbort" />
</Control>
<Control Id="C" Type="PushButton" X="192" Y="80" Width="66" Height="17" Cancel="yes" TabSkip="yes" Text="&Cancel">
<Publish Event="EndDialog" Value="ErrorCancel" />
</Control>
<Control Id="I" Type="PushButton" X="192" Y="80" Width="66" Height="17" TabSkip="yes" Text="&Ignore">
<Publish Event="EndDialog" Value="ErrorIgnore" />
</Control>
<Control Id="O" Type="PushButton" X="192" Y="80" Width="66" Height="17" Default="yes" TabSkip="yes" Text="&OK">
<Publish Event="EndDialog" Value="ErrorOk" />
</Control>
<Control Id="R" Type="PushButton" X="192" Y="80" Width="66" Height="17" TabSkip="yes" Text="&Retry">
<Publish Event="EndDialog" Value="ErrorRetry" />
</Control>
<Control Id="WarningIcon" Type="Icon" X="15" Y="15" Width="24" Height="24" FixedSize="yes" IconSize="32" Text="NewBinary4" />
</Dialog>
<!-- *****************************************************************************************
Setup Complete Successfully
-->
<!--
This dialog includes the option to launch the ConfigureServer CustomAction
-->
<Dialog Id="SetupCompleteSuccessDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="OK" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Cancel="yes" Text="&Finish">
<!--
<Publish Event="DoAction" Value="ConfigureServer">ConfigureServer And NOT Installed And ACTION="INSTALL" And $ServerInstanceConfig=3</Publish>
-->
<Publish Event="EndDialog" Value="Exit" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Disabled="yes" Text="Cancel" />
<Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" TabSkip="no" Text="AdminBackground" />
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes" Text="< &Back" />
<Control Id="TextLine3" Type="Text" X="135" Y="55" Width="228" Height="45" Hidden="yes" Transparent="yes" ShowCondition="ProgressType2="uninstalled"">
<Text Value="The Setup Wizard has successfully uninstalled [ProductName]. Click Finish to exit the wizard." />
</Control>
<Control Id="UpdateTextLine1" Type="Text" X="135" Y="30" Width="228" Height="45" Hidden="yes" Transparent="yes" ShowCondition="NOT Installed And ACTION="INSTALL"">
<Text Value="Setup has finished installing [ProductName]. Click Finish to exit the wizard." />
</Control>
<!--
<Control Id="InstallServiceCBox" Type="CheckBox" X="135" Y="88" Width="11" Height="11"
Property="ConfigureServer" Integer="yes" Hidden="yes">
<Condition Action="show">NOT Installed And ACTION="INSTALL" And $ServerInstanceConfig=3</Condition>
</Control>
<Control Id="InstallServiceLbl" Type="Text" X="148" Y="88" Width="208" Height="11" Hidden="yes" Transparent="yes">
<Text>{&TahomaBold8}Configure the MySQL Server now</Text>
<Condition Action="show">NOT Installed And ACTION="INSTALL" And $ServerInstanceConfig=3</Condition>
</Control>
<Control Id="InstallServiceDescLbl" Type="Text" X="148" Y="100" Width="208" Height="48" Hidden="yes" Transparent="yes">
<Text>Use this option to generate an optimized MySQL config file, setup a Windows service running on a dedicated port and to set the password for the root account.</Text>
<Condition Action="show">NOT Installed And ACTION="INSTALL" And $ServerInstanceConfig=3</Condition>
</Control>
-->
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
<Text Value="{&TahomaBold10}Wizard Completed" />
</Control>
</Dialog>
<!-- *****************************************************************************************
User Exit Dialog
-->
<Dialog Id="SetupInterruptedDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="Finish" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Cancel="yes" Text="&Finish" DefaultCondition="NOT UpdateStarted">
<Publish Event="EndDialog" Value="Exit" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Disabled="yes" TabSkip="yes" Text="Cancel" DisableCondition="NOT UpdateStarted" EnableCondition="UpdateStarted">
<Publish Property="Suspend" Value="1" />
<Publish Event="EndDialog" Value="Exit" />
</Control>
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes" TabSkip="yes" Text="< &Back" DisableCondition="NOT UpdateStarted" EnableCondition="UpdateStarted" DefaultCondition="UpdateStarted">
<Publish Property="Suspend" Value="{}" />
<Publish Event="EndDialog" Value="Exit" />
</Control>
<Control Id="FinishText1" Type="Text" X="135" Y="80" Width="228" Height="50" Transparent="yes" HideCondition="UpdateStarted" ShowCondition="NOT UpdateStarted">
<Text Value="Your system has not been modified. To install this program at a later time, please run the installation again." />
</Control>
<Control Id="FinishText2" Type="Text" X="135" Y="135" Width="228" Height="25" Transparent="yes" HideCondition="UpdateStarted" ShowCondition="NOT UpdateStarted">
<Text Value="Click Finish to exit the wizard." />
</Control>
<Control Id="RestContText1" Type="Text" X="135" Y="80" Width="228" Height="50" Transparent="yes" HideCondition="NOT UpdateStarted" ShowCondition="UpdateStarted">
<Text Value="You can either keep any existing installed elements on your system to continue this installation at a later time or you can restore your system to its original state prior to the installation." />
</Control>
<Control Id="RestContText2" Type="Text" X="135" Y="135" Width="228" Height="25" Transparent="yes" HideCondition="NOT UpdateStarted" ShowCondition="UpdateStarted">
<Text Value="Click Restore or Continue Later to exit the wizard." />
</Control>
<Control Id="TextLine2" Type="Text" X="135" Y="55" Width="228" Height="25" Transparent="yes">
<Text Value="The wizard was interrupted before [ProductName] could be completely installed." />
</Control>
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
<Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
<Text Value="{&TahomaBold10}Wizard Completed" />
</Control>
</Dialog>
<!-- *****************************************************************************************
Setup Complete Error Dialog
-->
<Dialog Id="SetupCompleteErrorDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="Finish" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Cancel="yes" Text="&Finish" DefaultCondition="NOT UpdateStarted">
<Publish Event="EndDialog" Value="Exit" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Disabled="yes" Text="Cancel" DisableCondition="NOT UpdateStarted" EnableCondition="UpdateStarted">
<Publish Property="Suspend" Value="1" />
<Publish Event="EndDialog" Value="Return" />
</Control>
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes" Text="< &Back" DisableCondition="NOT UpdateStarted" EnableCondition="UpdateStarted" DefaultCondition="UpdateStarted">
<Publish Property="Suspend" Value="{}" />
<Publish Event="EndDialog" Value="Return" />
</Control>
<Control Id="FinishText1" Type="Text" X="135" Y="80" Width="228" Height="50" Transparent="yes" HideCondition="UpdateStarted" ShowCondition="NOT UpdateStarted">
<Text Value="Your system has not been modified. To complete installation at another time, please run setup again." />
</Control>
<Control Id="FinishText2" Type="Text" X="135" Y="135" Width="228" Height="25" Transparent="yes" HideCondition="UpdateStarted" ShowCondition="NOT UpdateStarted">
<Text Value="Click Finish to exit the wizard." />
</Control>
<Control Id="RestContText1" Type="Text" X="135" Y="80" Width="228" Height="50" Transparent="yes" HideCondition="NOT UpdateStarted" ShowCondition="UpdateStarted">
<Text Value="You can either keep any existing installed elements on your system to continue this installation at a later time or you can restore your system to its original state prior to the installation." />
</Control>
<Control Id="RestContText2" Type="Text" X="135" Y="135" Width="228" Height="25" Transparent="yes" HideCondition="NOT UpdateStarted" ShowCondition="UpdateStarted">
<Text Value="Click Restore or Continue Later to exit the wizard." />
</Control>
<Control Id="TextLine2" Type="Text" X="135" Y="55" Width="228" Height="25" Transparent="yes">
<Text Value="The wizard was interrupted before [ProductName] could be completely installed." />
</Control>
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
<Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
<Text Value="{&TahomaBold10}[ProductName] Setup Wizard ended prematurely" />
</Control>
</Dialog>
<!-- *****************************************************************************************
Cancel Dialog
-->
<!-- called when the user presses cancel -->
<Dialog Id="CancelSetupDialog" Width="260" Height="85" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="No" Type="PushButton" X="135" Y="57" Width="66" Height="17" Default="yes" Cancel="yes" Text="&No">
<Publish Event="EndDialog" Value="Return" />
</Control>
<Control Id="Yes" Type="PushButton" X="62" Y="57" Width="66" Height="17" Text="&Yes">
<Publish Event="EndDialog" Value="Exit" />
</Control>
<Control Id="Text" Type="Text" X="48" Y="15" Width="194" Height="30">
<Text Value="Are you sure you want to cancel [ProductName] installation?" />
</Control>
<Control Id="Icon" Type="Icon" X="15" Y="15" Width="24" Height="24" FixedSize="yes" IconSize="32" Text="NewBinary4" />
</Dialog>
<!-- *****************************************************************************************
Install Welcome Dialog
-->
<Dialog Id="InstallWelcomeDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="&Next >">
<!-- No longer making this differentiation as requested by David Madsen -->
<!--
<?if $(var.LICENSE_TYPE) = "commercial"?>
<Publish Event="NewDialog" Value="LicenseAgreementDialog">1</Publish>
<?else?>
<Publish Event="NewDialog" Value="SetupTypeDialog">1</Publish>
<?endif?>
-->
<Publish Event="NewDialog" Value="LicenseAgreementDlg" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="Cancel">
<Publish Event="SpawnDialog" Value="CancelSetupDialog" />
</Control>
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes" Text="< &Back" />
<!--Control Id="Copyright" Type="Text" X="135" Y="144" Width="228" Height="73" Transparent="yes"
TabSkip="no">
<Text>WARNING: This program is protected by copyright law.</Text>
</Control-->
<Control Id="TextLine2" Type="Text" X="135" Y="55" Width="228" Height="45" Transparent="yes">
<Text Value="The Setup Wizard will install [ProductName] release [ProductVersion] on your computer. To continue, click Next." />
</Control>
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
<Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
<Text Value="{&TahomaBold10}Welcome to the Setup Wizard for [ProductName]" />
</Control>
<Control Id="PrevVersion" Type="Text" X="135" Y="124" Width="228" Height="73" Transparent="yes" TabSkip="no" Hidden="yes" ShowCondition="PREVIOUSVERSIONINSTALLED">
<Text Value="Setup has detected a previous version of [ProductName]. It will be removed during this installation." />
</Control>
</Dialog>
<!-- *****************************************************************************************
Maintenance Welcome Dialog
-->
<Dialog Id="MaintenanceWelcomeDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="&Next >">
<Publish Event="NewDialog" Value="MaintenanceTypeDialog" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="Cancel">
<Publish Event="SpawnDialog" Value="CancelSetupDialog" />
</Control>
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes" Text="< &Back" />
<Control Id="TextLine2" Type="Text" X="135" Y="55" Width="228" Height="50" Transparent="yes">
<Text Value="The Setup Wizard will allow you to modify, repair, or remove [ProductName]. To continue, click Next." />
</Control>
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
<Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
<Text Value="{&TahomaBold10}Welcome to the Setup Wizard for [ProductName]" />
</Control>
</Dialog>
<!-- *****************************************************************************************
Admin Welcome Dialog
-->
<Dialog Id="AdminWelcomeDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="&Next >">
<Publish Event="NewDialog" Value="AdminNetworkLocationDialog" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="Cancel">
<Publish Event="SpawnDialog" Value="CancelSetupDialog" />
</Control>
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes" Text="< &Back" />
<Control Id="TextLine2" Type="Text" X="135" Y="55" Width="228" Height="45" Transparent="yes">
<Text Value="This Wizard will create a server image of [ProductName] at a specified network location. To continue, click Next." />
</Control>
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
<Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
<Text Value="{&TahomaBold10}Welcome to the Setup Wizard for [ProductName]" />
</Control>
</Dialog>
<!-- *****************************************************************************************
Setup Initialization Dialog
-->
<!--
normally you won't see this dialog because it is only shown while loading and
the load-time of the administrator is very short..
-->
<Dialog Id="SetupInitializationDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" Modeless="yes">
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Default="yes" Cancel="yes" Text="Cancel">
<Publish Event="SpawnDialog" Value="CancelSetupDialog" />
</Control>
<Control Id="ActionText" Type="Text" X="135" Y="109" Width="220" Height="36" Transparent="yes">
<Subscribe Event="ActionText" Attribute="Text" />
</Control>
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes" TabSkip="yes" Text="< &Back" />
<Control Id="TextLine2" Type="Text" X="135" Y="55" Width="228" Height="30" Transparent="yes">
<Text Value="[ProductName] Setup is preparing the Setup Wizard which will guide you through the program setup process. Please wait..." />
</Control>
<Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Disabled="yes" TabSkip="yes" Text="&Next >" />
<Control Id="ActionData" Type="Text" X="135" Y="125" Width="228" Height="12" Transparent="yes">
<Subscribe Event="ActionData" Attribute="Text" />
</Control>
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="374" Height="0" />
<Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
<Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
<Text Value="{&TahomaBold10}Welcome to the Setup Wizard for [ProductName]" />
</Control>
</Dialog>
<!-- *****************************************************************************************
Setup Progress Dialog
-->
<Dialog Id="SetupProgressDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" Modeless="yes">
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Default="yes" Cancel="yes" Text="Cancel">
<Publish Event="SpawnDialog" Value="CancelSetupDialog" />
</Control>
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes" Text="< &Back" />
<Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Disabled="yes" Text="&Next >" />
<Control Id="ActionText" Type="Text" X="59" Y="100" Width="275" Height="12">
<Subscribe Event="ActionText" Attribute="Text" />
</Control>
<Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Hidden="yes" Transparent="yes" ShowCondition="ProgressType2="installed"">
<Text Value="The program features you selected are being installed." />
</Control>
<Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Hidden="yes" Transparent="yes" ShowCondition="ProgressType1="Installing"">
<Text Value="{&MSSansBold8}Installing [ProductName]" />
</Control>
<Control Id="DlgText" Type="Text" X="59" Y="51" Width="275" Height="30" Hidden="yes" Transparent="yes" ShowCondition="ProgressType3="installs"">
<Text Value="Please wait while the Setup Wizard installs [ProductName]. This may take several minutes." />
</Control>
<Control Id="DlgTitle2" Type="Text" X="13" Y="6" Width="292" Height="25" Hidden="yes" Transparent="yes" ShowCondition="ProgressType1="Uninstalling"">
<Text Value="{&MSSansBold8}Uninstalling [ProductName]" />
</Control>
<Control Id="DlgText2" Type="Text" X="59" Y="51" Width="275" Height="30" Hidden="yes" Transparent="yes" ShowCondition="ProgressType3="uninstalls"">
<Text Value="Please wait while the Setup Wizard uninstalls [ProductName]. This may take several minutes." />
</Control>
<Control Id="DlgDesc2" Type="Text" X="21" Y="23" Width="292" Height="25" Hidden="yes" Transparent="yes" ShowCondition="ProgressType2="uninstalled"">
<Text Value="The program features you selected are being uninstalled." />
</Control>
<Control Id="ActionProgress95" Type="ProgressBar" X="59" Y="113" Width="275" Height="12" ProgressBlocks="yes" Text="Progress done">
<Subscribe Event="InstallFiles" Attribute="Progress" />
<Subscribe Event="MoveFiles" Attribute="Progress" />
<Subscribe Event="RemoveFiles" Attribute="Progress" />
<Subscribe Event="RemoveRegistryValues" Attribute="Progress" />
<Subscribe Event="WriteIniValues" Attribute="Progress" />
<Subscribe Event="WriteRegistryValues" Attribute="Progress" />
<Subscribe Event="UnmoveFiles" Attribute="Progress" />
<Subscribe Event="AdminInstallFinalize" Attribute="Progress" />
<Subscribe Event="SetProgress" Attribute="Progress" />
</Control>
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="LbSec" Type="Text" X="172" Y="139" Width="32" Height="12" Hidden="yes" Text="(Hidden for now)Sec." />
<Control Id="LbStatus" Type="Text" X="59" Y="85" Width="70" Height="12" Text="Status:" />
<Control Id="SetupIcon" Type="Icon" X="21" Y="51" Width="24" Height="24" FixedSize="yes" IconSize="32" Text="NewBinary9" />
<Control Id="ShowTime" Type="Text" X="155" Y="139" Width="17" Height="12" Hidden="yes" Text="(Hidden for now)" />
<Control Id="TextTime" Type="Text" X="59" Y="139" Width="96" Height="12" Hidden="yes">
<Text Value=")Hidden for now)Estimated time remaining:" />
</Control>
</Dialog>
<!-- *****************************************************************************************
Resume Setup Dialog
-->
<Dialog Id="SetupResumeDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="&Next >">
<Publish Event="NewDialog" Value="OutOfSpaceDialog" Condition="OutOfNoRbDiskSpace = 1" />
<Publish Event="EndDialog" Value="Return" Condition="OutOfNoRbDiskSpace <> 1" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="Cancel">
<Publish Event="SpawnDialog" Value="CancelSetupDialog" />
</Control>
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes" Text="< &Back" />
<Control Id="PreselectedText" Type="Text" X="135" Y="55" Width="228" Height="45" Transparent="yes" HideCondition="RESUME" ShowCondition="NOT RESUME">
<Text Value="The Setup Wizard will complete the installation of [ProductName] on your computer. To continue, click Next." />
</Control>
<Control Id="ResumeText" Type="Text" X="135" Y="46" Width="228" Height="45" Transparent="yes" HideCondition="NOT RESUME" ShowCondition="RESUME">
<Text Value="The Setup Wizard will complete the suspended installation of [ProductName] on your computer. To continue, click Next." />
</Control>
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
<Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
<Text Value="{&TahomaBold10}Resuming the Setup Wizard for [ProductName]" />
</Control>
</Dialog>
<!-- *****************************************************************************************
Setup Type Dialog
-->
<Dialog Id="SetupTypeDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="RadioGroup" Type="RadioButtonGroup" X="22" Y="62" Width="264" Height="166" Property="SetupType" FixedSize="yes" />
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="< &Back">
<!-- No longer making this differentiation as requested by David Madsen -->
<!--
<?if $(var.LICENSE_TYPE) = "commercial"?>
<Publish Event="NewDialog" Value="LicenseAgreementDialog">NOT Installed</Publish>
<?else?>
<Publish Event="NewDialog" Value="InstallWelcomeDialog">NOT Installed</Publish>
<?endif?>
-->
<Publish Event="NewDialog" Value="LicenseAgreementDlg" Condition="NOT Installed" />
</Control>
<Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="&Next >">
<Publish Event="NewDialog" Value="CustomSetupDialog" Condition="SetupType = "Custom"" />
<Publish Event="NewDialog" Value="ReadyToInstallDialog" Condition="SetupType <> "Custom"" />
<Publish Property="SelectedSetupType" Value="Typical" Condition="SetupType = "Typical"" />
<Publish Property="SelectedSetupType" Value="Complete" Condition="SetupType = "Complete"" />
<Publish Property="SelectedSetupType" Value="Custom" Condition="SetupType = "Custom"" />
<Publish Event="SetInstallLevel" Value="1" Condition="SetupType="Typical"" />
<Publish Event="SetInstallLevel" Value="10" Condition="SetupType="Complete"" />
<Publish Event="SetInstallLevel" Value="1" Condition="SetupType="Custom"" />
<Publish Property="TargetPath1" Value="[INSTALLDIR] -> [Connector_ODBC] -> [TARGETDIR]" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="Cancel">
<Publish Event="SpawnDialog" Value="CancelSetupDialog" />
</Control>
<Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
<Text Value="Choose the setup type that best suits your needs." />
</Control>
<Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
<Text Value="{&MSSansBold8}Setup Type" />
</Control>
<Control Id="DlgText" Type="Text" X="22" Y="49" Width="326" Height="13">
<Text Value="Please select a setup type." />
</Control>
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="CompText" Type="Text" X="79" Y="137" Width="246" Height="31">
<Text Value="All program features will be installed. (Requires the most disk space.)" />
</Control>
<Control Id="CompleteIco" Type="Icon" X="33" Y="134" Width="36" Height="36" FixedSize="yes" IconSize="48" Text="SetupTypeComp" />
<Control Id="CustText" Type="Text" X="79" Y="195" Width="246" Height="30">
<Text Value="Choose which program features you want installed and where they will be installed. Recommended for advanced users." />
</Control>
<Control Id="CustomIco" Type="Icon" X="33" Y="192" Width="36" Height="36" FixedSize="yes" IconSize="48" Text="SetupTypeCust" />
<Control Id="TypicalText" Type="Text" X="79" Y="82" Width="246" Height="31">
<Text Value="Common program features will be installed. Recommended for general use." />
</Control>
<Control Id="TypicalIcon" Type="Icon" X="33" Y="79" Width="36" Height="36" FixedSize="yes" IconSize="48" Text="SetupTypeTyp" />
</Dialog>
<!-- *****************************************************************************************
Custom Setup Dialog
-->
<Dialog Id="CustomSetupDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes" TrackDiskSpace="yes">
<Control Id="Tree" Type="SelectionTree" X="8" Y="70" Width="220" Height="118" Property="_BrowseProperty" Sunken="yes" TabSkip="no" />
<Control Id="ChangeFolder" Type="PushButton" X="301" Y="203" Width="66" Height="17" Text="&Change..." HideCondition="Installed">
<Publish Event="SelectionBrowse" Value="InstallChangeFolderDialog" />
</Control>
<Control Id="Help" Type="PushButton" X="22" Y="243" Width="66" Height="17" Text="&Help">
<Publish Event="SpawnDialog" Value="CustomSetupTips" />
</Control>
<!--
<Control Id="Space" Type="PushButton" X="93" Y="243" Width="66" Height="17" Text="&Space">
<Publish Event="SelectionBrowse" Value="DiskSpaceRequirements">1</Publish>
<Condition Action="hide">Installed</Condition>
</Control>
-->
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="< &Back">
<Publish Event="NewDialog" Value="SetupTypeDialog" Condition="NOT Installed" />
<Publish Event="NewDialog" Value="MaintenanceTypeDialog" Condition="Installed" />
</Control>
<Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="&Next >" Disabled="no">
<Publish Event="NewDialog" Value="OutOfSpaceDialog" Condition="OutOfNoRbDiskSpace = 1" />
<!-- in maintenance mode this dialog is called without the setuptypedialog -->
<Publish Property="SetupType" Value="Custom" />
<!-- for 32bit only installer we don't need those properties here. All required is set in setup type dialog -->
<Publish Event="NewDialog" Value="ReadyToInstallDialog" Condition="&ODBC> 0 AND &ODBC <> !ODBC" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="Cancel">
<Publish Event="SpawnDialog" Value="CancelSetupDialog" />
</Control>
<Control Id="Size" Type="Text" X="241" Y="133" Width="120" Height="50" Text="Feature size">
<Subscribe Event="SelectionSize" Attribute="Text" />
</Control>
<Control Id="DlgDesc" Type="Text" X="17" Y="23" Width="292" Height="25" Transparent="yes">
<Text Value="Select the program features you want installed." />
</Control>
<Control Id="DlgTitle" Type="Text" X="9" Y="6" Width="292" Height="25" Transparent="yes">
<Text Value="{&MSSansBold8}Custom Setup" />
</Control>
<Control Id="DlgText" Type="Text" X="9" Y="51" Width="360" Height="10">
<Text Value="Click on an icon in the list below to change how a feature is installed." />
</Control>
<Control Id="InstallLabel" Type="Text" X="8" Y="190" Width="360" Height="10" Text="Install to:" HideCondition="Installed" />
<Control Id="ItemDescription" Type="Text" X="241" Y="80" Width="120" Height="50">
<Text Value="Multiline description of the currently selected item" />
<Subscribe Event="SelectionDescription" Attribute="Text" />
</Control>
<Control Id="Location" Type="Text" X="8" Y="203" Width="291" Height="20">
<Text Value="<selected feature path>" />
<Subscribe Event="SelectionPath" Attribute="Text" />
</Control>
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="374" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="374" Height="0" />
<Control Id="FeatureGroup" Type="GroupBox" X="235" Y="67" Width="131" Height="120" Text="Feature Description" />
</Dialog>
<!-- *****************************************************************************************
License Agreement Dialog
-->
<Dialog Id="LicenseAgreementDlg" Width="374" Height="266" Title="[ProductName] - License Agreement" Hidden="yes" NoMinimize="yes">
<Control Id="Agree" Type="RadioButtonGroup" X="8" Y="190" Width="330" Height="40" Property="AgreeToLicense" />
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="< &Back">
<Publish Event="NewDialog" Value="InstallWelcomeDialog" />
</Control>
<Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="&Next >" DisableCondition="AgreeToLicense <> "Yes"" EnableCondition="AgreeToLicense = "Yes"">
<Publish Event="NewDialog" Value="SetupTypeDialog" Condition="AgreeToLicense = "Yes"" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="Cancel">
<Publish Event="SpawnDialog" Value="CancelSetupDialog" />
</Control>
<Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
<Text Value="Please read the following license agreement carefully." />
</Control>
<Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
<Text Value="{&MSSansBold8}License Agreement" />
</Control>
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="Memo" Type="ScrollableText" X="8" Y="55" Width="358" Height="130" Sunken="yes">
<Text SourceFile="resources/LICENSE.rtf" />
</Control>
</Dialog>
<!-- *****************************************************************************************
Ready To Install Dialog
-->
<Dialog Id="ReadyToInstallDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes" TrackDiskSpace="yes">
<Control Id="InstallNow" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="&Install">
<Publish Event="NewDialog" Value="OutOfSpaceDialog" Condition="OutOfNoRbDiskSpace = 1" />
<Publish Event="EndDialog" Value="Return" Condition="OutOfNoRbDiskSpace <> 1" />
<Publish Property="ProgressType1" Value="Installing" />
<Publish Property="ProgressType2" Value="installed" />
<Publish Property="ProgressType3" Value="installs" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="Cancel">
<Publish Event="SpawnDialog" Value="CancelSetupDialog" />
</Control>
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="< &Back">
<Publish Event="NewDialog" Value="SetupTypeDialog" Condition="SetupType <> "Custom"" />
<Publish Event="NewDialog" Value="CustomSetupDialog" Condition="SetupType = "Custom"" />
</Control>
<Control Id="GroupBox1" Type="Text" X="19" Y="92" Width="330" Height="133" Disabled="yes" Sunken="yes" Transparent="yes" TabSkip="no" />
<Control Id="SetupTypeText1" Type="Text" X="23" Y="97" Width="306" Height="13" TabSkip="no" Text="Setup Type:" />
<Control Id="SetupTypeText2" Type="Text" X="37" Y="114" Width="306" Height="14" TabSkip="no" Text="[SelectedSetupType]" />
<Control Id="TargetFolderText1" Type="Text" X="24" Y="136" Width="306" Height="11" TabSkip="no" Text="Destination Folder:" />
<Control Id="TargetFolderText2" Type="Text" X="37" Y="151" Width="306" Height="13" TabSkip="no" Text="[INSTALLDIR]" />
<Control Id="CurrentSettingsText" Type="Text" X="19" Y="80" Width="81" Height="10" TabSkip="no" Text="Current Settings:" />
<Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
<Text Value="The wizard is ready to begin installation." />
</Control>
<Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Hidden="yes" Transparent="yes" ShowCondition="ProgressType0="Modify"">
<Text Value="{&MSSansBold8}Ready to Modify the Program" />
</Control>
<Control Id="DlgTitle2" Type="Text" X="13" Y="6" Width="292" Height="25" Hidden="yes" Transparent="yes" ShowCondition="ProgressType0="Repair"">
<Text Value="{&MSSansBold8}Ready to Repair the Program" />
</Control>
<Control Id="DlgTitle3" Type="Text" X="13" Y="6" Width="292" Height="25" Hidden="yes" Transparent="yes" ShowCondition="ProgressType0="install"">
<Text Value="{&MSSansBold8}Ready to Install the Program" />
</Control>
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="372" Height="0" />
<Control Id="DlgText1" Type="Text" X="21" Y="54" Width="330" Height="24">
<Text Value="If you want to review or change any of your installation settings, click Back. Click Cancel to exit the wizard." />
</Control>
</Dialog>
<!-- *****************************************************************************************
Admin Network Location Dialog
-->
<Dialog Id="AdminNetworkLocationDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="InstallNow" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="&Install">
<Publish Event="SetTargetPath" Value="TARGETDIR" />
<Publish Event="NewDialog" Value="OutOfSpaceDialog" Condition="OutOfNoRbDiskSpace = 1" />
<Publish Event="EndDialog" Value="Return" Condition="OutOfNoRbDiskSpace <> 1" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="Cancel">
<Publish Event="SpawnDialog" Value="CancelSetupDialog" />
</Control>
<Control Id="SetupPathEdit" Type="PathEdit" X="21" Y="102" Width="330" Height="17" Property="TARGETDIR" />
<Control Id="Browse" Type="PushButton" X="286" Y="124" Width="66" Height="17" Text="&Change...">
<Publish Event="SpawnDialog" Value="AdminChangeFolderDialog" />
</Control>
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="< &Back">
<Publish Event="NewDialog" Value="AdminWelcomeDialog" />
</Control>
<Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
<Text Value="Specify a network location for the server image of the product." />
</Control>
<Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
<Text Value="{&MSSansBold8}Network Location" />
</Control>
<Control Id="DlgText" Type="Text" X="21" Y="51" Width="326" Height="40">
<Text Value="Enter the network location or click Change to browse to a location. Click Install to create a server image of [ProductName] at the specified network location or click Cancel to exit the wizard." />
</Control>
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="LBBrowse" Type="Text" X="21" Y="90" Width="100" Height="10" Text="&Network location:" />
</Dialog>
<!-- *****************************************************************************************
Admin Change Folder Dialog
-->
<!-- could be merged with InstallChangeFolder -->
<Dialog Id="AdminChangeFolderDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="Tail" Type="PathEdit" X="21" Y="207" Width="332" Height="17" Property="TARGETDIR" />
<Control Id="OK" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="OK">
<Publish Event="EndDialog" Value="Return" />
<Publish Event="SetTargetPath" Value="TARGETDIR" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="Cancel">
<Publish Event="Reset" Value="0" />
<Publish Event="EndDialog" Value="Return" />
</Control>
<Control Id="ComboText" Type="Text" X="21" Y="50" Width="99" Height="14" TabSkip="no" Text="&Look in:" />
<Control Id="Combo" Type="DirectoryCombo" X="21" Y="64" Width="277" Height="80" Property="TARGETDIR" Removable="yes" Fixed="yes" Remote="yes" />
<Control Id="Up" Type="PushButton" X="310" Y="66" Width="19" Height="19" ToolTip="Up one level" Icon="yes" FixedSize="yes" IconSize="16" Text="NewBinary3">
<Publish Event="DirectoryListUp" Value="0" />
</Control>
<Control Id="NewFolder" Type="PushButton" X="335" Y="66" Width="19" Height="19" ToolTip="Create new folder" Icon="yes" FixedSize="yes" IconSize="16" Text="NewBinary2">
<Publish Event="DirectoryListNew" Value="0" />
</Control>
<Control Id="List" Type="DirectoryList" X="21" Y="90" Width="332" Height="97" Property="TARGETDIR" Sunken="yes" TabSkip="no" />
<Control Id="TailText" Type="Text" X="21" Y="193" Width="99" Height="13" TabSkip="no" Text="&Folder name:" />
<Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
<Text Value="Browse to the destination folder." />
</Control>
<Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
<Text Value="{&MSSansBold8}Change Current Destination Folder" />
</Control>
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
</Dialog>
<!-- *****************************************************************************************
Out Of Space Dialog
-->
<Dialog Id="OutOfSpaceDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="Resume" Type="PushButton" X="301" Y="243" Width="66" Height="17" Default="yes" Cancel="yes" Text="OK">
<Publish Event="NewDialog" Value="CustomSetupDialog" Condition="ACTION <> "ADMIN"" />
<Publish Event="NewDialog" Value="AdminNetworkLocationDialog" Condition="ACTION = "ADMIN"" />
</Control>
<Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
<Text Value="Disk space required for the installation exceeds available disk space." />
</Control>
<Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
<Text Value="{&MSSansBold8}Out of Disk Space" />
</Control>
<Control Id="DlgText" Type="Text" X="21" Y="51" Width="326" Height="43">
<Text Value="The highlighted volumes do not have enough disk space available for the currently selected features. You can remove files from the highlighted volumes, choose to install less features onto local drives, or select different destination drives." />
</Control>
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="378" Width="326" Height="0" />
<Control Id="List" Type="VolumeCostList" X="21" Y="95" Width="332" Height="120" Sunken="yes" Fixed="yes" Remote="yes">
<Text Value="{120}{70}{70}{70}{70}" />
</Control>
</Dialog>
<!-- *****************************************************************************************
Custom Setup Dialog
-->
<Dialog Id="CustomSetupTips" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="OK" Type="PushButton" X="301" Y="243" Width="66" Height="17" Default="yes" Cancel="yes" Text="OK">
<Publish Event="EndDialog" Value="Return" />
</Control>
<Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
<Text Value="Custom Setup allows you to selectively install program features." />
</Control>
<Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
<Text Value="{&MSSansBold8}Custom Setup Tips" />
</Control>
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<!--
<Control Id="DontInstall" Type="Icon" X="21" Y="155" Width="24" Height="24" FixedSize="yes"
IconSize="32" Text="NewBinary15" />
-->
<Control Id="DontInstallText" Type="Text" X="60" Y="155" Width="300" Height="20">
<Text Value="Will not be installed." />
</Control>
<Control Id="FirstInstallText" Type="Text" X="60" Y="180" Width="300" Height="20">
<Text Value="Will be installed on first use. (Available only if the feature supports this option.)" />
</Control>
<Control Id="Install" Type="Icon" X="21" Y="105" Width="24" Height="24" FixedSize="yes" IconSize="32" Text="NewBinary14" />
<Control Id="InstallFirstUse" Type="Icon" X="21" Y="180" Width="24" Height="24" FixedSize="yes" IconSize="32" Text="NewBinary16" />
<Control Id="InstallPartial" Type="Icon" X="21" Y="130" Width="24" Height="24" FixedSize="yes" IconSize="32" Text="NewBinary17" />
<Control Id="InstallStateMenu" Type="Icon" X="21" Y="52" Width="24" Height="24" FixedSize="yes" IconSize="32" Text="NewBinary18" />
<Control Id="InstallStateText" Type="Text" X="21" Y="85" Width="300" Height="10">
<Text Value="This install state means the feature..." />
</Control>
<Control Id="InstallText" Type="Text" X="60" Y="105" Width="300" Height="20">
<Text Value="Will be completely installed to the local hard drive." />
</Control>
<Control Id="MenuText" Type="Text" X="50" Y="52" Width="300" Height="36">
<Text Value="The icon next to the feature name indicates the install state of the feature. Click the icon to drop down the install state menu for each feature." />
</Control>
<Control Id="NetworkInstall" Type="Icon" X="21" Y="205" Width="24" Height="24" FixedSize="yes" IconSize="32" Text="NewBinary13" />
<Control Id="NetworkInstallText" Type="Text" X="60" Y="205" Width="300" Height="20">
<Text Value="Will be installed to run from the network. (Available only if the feature supports this option.)" />
</Control>
<Control Id="PartialText" Type="Text" X="60" Y="130" Width="300" Height="20">
<Text Value="Will have some subfeatures installed to the local hard drive. (Available only if the feature has subfeatures.)" />
</Control>
</Dialog>
<!-- *****************************************************************************************
Maintenance Type Dialog
-->
<Dialog Id="MaintenanceTypeDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="RadioGroup" Type="RadioButtonGroup" X="21" Y="55" Width="290" Height="170" Property="_IsMaintenance" />
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="< &Back">
<Publish Event="NewDialog" Value="MaintenanceWelcomeDialog" />
</Control>
<Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="&Next >">
<Publish Property="ProgressType0" Value="Repair" Condition="_IsMaintenance = "Reinstall"" />
<Publish Property="ProgressType0" Value="Modify" Condition="_IsMaintenance = "Change"" />
<Publish Property="ProgressType1" Value="Modifying" Condition="_IsMaintenance = "Change"" />
<Publish Property="ProgressType1" Value="Repairing" Condition="_IsMaintenance = "Reinstall"" />
<Publish Property="ProgressType2" Value="repairs" Condition="_IsMaintenance = "Reinstall"" />
<Publish Property="ProgressType2" Value="modified" Condition="_IsMaintenance = "Change"" />
<Publish Property="ProgressType3" Value="modifies" Condition="_IsMaintenance = "Change"" />
<Publish Property="ProgressType3" Value="repairs" Condition="_IsMaintenance = "Reinstall"" />
<Publish Event="ReinstallMode" Value="[ReinstallModeText]" Condition="_IsMaintenance = "Reinstall"" />
<Publish Event="Reinstall" Value="ALL" Condition="_IsMaintenance = "Reinstall"" />
<Publish Event="NewDialog" Value="ReadyToRemove" Condition="_IsMaintenance = "Remove"" />
<Publish Event="NewDialog" Value="CustomSetupDialog" Condition="_IsMaintenance = "Change"" />
<Publish Event="NewDialog" Value="ReadyToInstallDialog" Condition="_IsMaintenance = "Reinstall"" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="Cancel">
<Publish Event="SpawnDialog" Value="CancelSetupDialog" />
</Control>
<Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
<Text Value="Modify, repair, or remove the program." />
</Control>
<Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
<Text Value="{&MSSansBold8}Program Maintenance" />
</Control>
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="Ico1" Type="Icon" X="35" Y="75" Width="24" Height="24" FixedSize="yes" IconSize="32" Text="NewBinary6" />
<Control Id="Ico2" Type="Icon" X="35" Y="135" Width="24" Height="24" FixedSize="yes" IconSize="32" Text="NewBinary7" />
<Control Id="Ico3" Type="Icon" X="35" Y="195" Width="24" Height="24" FixedSize="yes" IconSize="32" Text="NewBinary8" />
<Control Id="Text1" Type="Text" X="80" Y="72" Width="260" Height="35">
<Text Value="Change which program features are installed. This option displays the Custom Selection dialog in which you can change the way features are installed." />
</Control>
<Control Id="Text2" Type="Text" X="80" Y="135" Width="260" Height="35">
<Text Value="Repair installation errors in the program. This option fixes missing or corrupt files, shortcuts, and registry entries." />
</Control>
<Control Id="Text3" Type="Text" X="80" Y="192" Width="260" Height="35">
<Text Value="Remove [ProductName] from your computer." />
</Control>
</Dialog>
<!-- *****************************************************************************************
Install Change Folder Dialog
-->
<Dialog Id="InstallChangeFolderDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="Tail" Type="PathEdit" X="21" Y="207" Width="332" Height="17" Property="_BrowseProperty" Sunken="yes" Indirect="yes" />
<Control Id="OK" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="OK">
<Publish Event="SetTargetPath" Value="[_BrowseProperty]" />
<Publish Event="EndDialog" Value="Return" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="Cancel">
<Publish Event="Reset" Value="0" />
<Publish Event="EndDialog" Value="Return" />
</Control>
<Control Id="ComboText" Type="Text" X="21" Y="50" Width="99" Height="14" TabSkip="no" Text="&Look in:" />
<Control Id="Combo" Type="DirectoryCombo" X="21" Y="64" Width="277" Height="80" Property="_BrowseProperty" Indirect="yes" Removable="yes" Fixed="yes" Remote="yes" CDROM="yes" RAMDisk="yes" Floppy="yes" />
<Control Id="Up" Type="PushButton" X="310" Y="66" Width="19" Height="19" ToolTip="Up One Level" Icon="yes" FixedSize="yes" IconSize="16" Text="NewBinary3">
<Publish Event="DirectoryListUp" Value="0" />
</Control>
<Control Id="NewFolder" Type="PushButton" X="335" Y="66" Width="19" Height="19" ToolTip="Create New Folder" Icon="yes" FixedSize="yes" IconSize="16" Text="NewBinary2">
<Publish Event="DirectoryListNew" Value="0" />
</Control>
<Control Id="List" Type="DirectoryList" X="21" Y="90" Width="332" Height="97" Property="_BrowseProperty" Sunken="yes" Indirect="yes" TabSkip="no" />
<Control Id="TailText" Type="Text" X="21" Y="193" Width="99" Height="13" TabSkip="no" Text="&Folder name:" />
<Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
<Text Value="Browse to the destination folder." />
</Control>
<Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
<Text Value="{&MSSansBold8}Change Current Destination Folder" />
</Control>
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
</Dialog>
<!-- *****************************************************************************************
Disk Space Requirements Dialog
-->
<Dialog Id="DiskSpaceRequirements" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="OK" Type="PushButton" X="301" Y="243" Width="66" Height="17" Default="yes" Cancel="yes" Text="OK">
<Publish Event="EndDialog" Value="Return" />
</Control>
<Control Id="DlgDesc" Type="Text" X="17" Y="23" Width="292" Height="25" Transparent="yes">
<Text Value="The disk space required for the installation of the selected features." />
</Control>
<Control Id="DlgTitle" Type="Text" X="9" Y="6" Width="292" Height="25" Transparent="yes">
<Text Value="{&MSSansBold8}Disk Space Requirements" />
</Control>
<Control Id="DlgText" Type="Text" X="10" Y="185" Width="358" Height="41">
<Text Value="The highlighted volumes do not have enough disk space available for the currently selected features. You can remove files from the highlighted volumes, choose to install less features onto local drives, or select different destination drives." />
</Control>
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="List" Type="VolumeCostList" X="8" Y="55" Width="358" Height="125" Sunken="yes" Fixed="yes" Remote="yes">
<Text Value="{120}{70}{70}{70}{70}" />
</Control>
</Dialog>
<!-- *****************************************************************************************
File In Use Dialog
-->
<!-- FilesInUse is a reserved name. Don't change it. -->
<Dialog Id="FilesInUse" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes" KeepModeless="yes">
<Control Id="Retry" Type="PushButton" X="164" Y="243" Width="66" Height="17" Default="yes" Text="&Retry">
<Publish Event="EndDialog" Value="Retry" />
</Control>
<Control Id="Ignore" Type="PushButton" X="230" Y="243" Width="66" Height="17" Text="&Ignore">
<Publish Event="EndDialog" Value="Ignore" />
</Control>
<Control Id="Exit" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="&Exit">
<Publish Event="EndDialog" Value="Exit" />
</Control>
<Control Id="List" Type="ListBox" X="21" Y="87" Width="331" Height="135" Property="FileInUseProcess" Sunken="no" />
<Control Id="Desc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
<Text Value="Some files that need to be updated are currently in use." />
</Control>
<Control Id="Title" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
<Text Value="{&MSSansBold8}Files in Use" />
</Control>
<Control Id="Text" Type="Text" X="21" Y="51" Width="348" Height="29">
<Text Value="The following applications are using files that need to be updated by this setup. Close these applications and click Retry to continue." />
</Control>
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
</Dialog>
<!-- *****************************************************************************************
Ready To Remove Dialog
-->
<Dialog Id="ReadyToRemove" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
<Control Id="RemoveNow" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="&Remove">
<Publish Property="ProgressType1" Value="Uninstalling" />
<Publish Property="ProgressType2" Value="uninstalled" />
<Publish Property="ProgressType3" Value="uninstalls" />
<Publish Event="Remove" Value="ALL" />
<Publish Event="NewDialog" Value="OutOfSpaceDialog" Condition="OutOfNoRbDiskSpace = 1" />
<Publish Event="EndDialog" Value="Return" Condition="OutOfNoRbDiskSpace <> 1" />
</Control>
<Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes" Text="Cancel">
<Publish Event="SpawnDialog" Value="CancelSetupDialog" />
</Control>
<Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="< &Back">
<Publish Event="NewDialog" Value="MaintenanceTypeDialog" />
</Control>
<Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
<Text Value="You have chosen to remove the program from your system." />
</Control>
<Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
<Text Value="{&MSSansBold8}Remove the Program" />
</Control>
<Control Id="DlgText" Type="Text" X="21" Y="51" Width="326" Height="24">
<Text Value="Click Remove to remove [ProductName] from your computer. After removal, this program will no longer be available for use." />
</Control>
<Control Id="DlgText2" Type="Text" X="21" Y="102" Width="330" Height="24" />
<Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
<Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
<Control Id="DlgText1" Type="Text" X="21" Y="79" Width="330" Height="23">
<Text Value="If you want to review or change any settings, click Back." />
</Control>
</Dialog>
<!-- *****************************************************************************************
End of Dialog
-->
<!-- *****************************************************************************************
Radio Groups
-->
<RadioButtonGroup Property="AgreeToLicense">
<RadioButton Text="I &do not accept the terms in the license agreement" X="0" Y="15" Width="295" Height="15" Value="No" />
<RadioButton Text="I &accept the terms in the license agreement" X="0" Y="0" Width="295" Height="15" Value="Yes" />
</RadioButtonGroup>
<RadioButtonGroup Property="_IsMaintenance">
<RadioButton Text="{&MSSansBold8}&Modify" X="0" Y="0" Width="290" Height="14" Value="Change" />
<RadioButton Text="{&MSSansBold8}Re&pair" X="0" Y="60" Width="290" Height="14" Value="Reinstall" />
<RadioButton Text="{&MSSansBold8}&Remove" X="0" Y="120" Width="290" Height="14" Value="Remove" />
</RadioButtonGroup>
<RadioButtonGroup Property="SetupType">
<RadioButton Text="{&MSSansBold8}&Typical" X="0" Y="5" Width="214" Height="14" Value="Typical" />
<RadioButton Text="{&MSSansBold8}&Complete" X="0" Y="60" Width="264" Height="14" Value="Complete" />
<RadioButton Text="{&MSSansBold8}Cu&stom" X="0" Y="118" Width="264" Height="14" Value="Custom" />
</RadioButtonGroup>
<!-- *****************************************************************************************
Text Styles
-->
<TextStyle Id="Tahoma8" FaceName="Tahoma" Size="8" />
<TextStyle Id="Arial8" FaceName="Arial" Size="8" />
<TextStyle Id="Arial9" FaceName="Arial" Size="9" />
<TextStyle Id="ArialBlue10" FaceName="Arial" Size="10" Red="0" Green="255" Blue="0" />
<TextStyle Id="ArialBlueStrike10" FaceName="Arial" Size="10" Red="0" Green="255" Blue="0" Strike="yes" />
<TextStyle Id="CourierNew8" FaceName="Courier New" Size="8" />
<TextStyle Id="CourierNew9" FaceName="Courier New" Size="9" />
<TextStyle Id="ExpressDefault" FaceName="Tahoma" Size="8" />
<TextStyle Id="MSGothic9" FaceName="MS Gothic" Size="9" />
<TextStyle Id="MSSansBold8" FaceName="Tahoma" Size="8" Bold="yes" />
<TextStyle Id="MSSansSerif8" FaceName="MS Sans Serif" Size="8" />
<TextStyle Id="MSSansSerif9" FaceName="MS Sans Serif" Size="9" />
<TextStyle Id="MSSGreySerif8" FaceName="MS Sans Serif" Size="8" Red="0" Green="0" Blue="0" />
<TextStyle Id="MSSWhiteSerif8" FaceName="Tahoma" Size="8" Red="255" Green="255" Blue="0" />
<TextStyle Id="Tahoma10" FaceName="Tahoma" Size="10" />
<TextStyle Id="Tahoma9" FaceName="Tahoma" Size="9" />
<TextStyle Id="TahomaBold10" FaceName="Tahoma" Size="10" Bold="yes" />
<TextStyle Id="TahomaBold8" FaceName="Tahoma" Size="8" Bold="yes" />
<TextStyle Id="Times8" FaceName="Times New Roman" Size="8" />
<TextStyle Id="Times9" FaceName="Times New Roman" Size="9" />
<TextStyle Id="TimesItalic12" FaceName="Times New Roman" Size="12" Italic="yes" />
<TextStyle Id="TimesItalicBlue10" FaceName="Times New Roman" Size="10" Red="0" Green="255" Blue="0" Italic="yes" />
<TextStyle Id="TimesRed16" FaceName="Times New Roman" Size="16" Red="0" Green="0" Blue="0" />
<TextStyle Id="VerdanaBold14" FaceName="Verdana" Size="13" Bold="yes" />
<!-- *****************************************************************************************
UI Texts
-->
<UIText Id="NewFolder" Value="Fldr|New Folder" />
<UIText Id="AbsentPath" />
<UIText Id="bytes" Value="bytes" />
<UIText Id="GB" Value="GB" />
<UIText Id="KB" Value="KB" />
<UIText Id="MB" Value="MB" />
<UIText Id="MenuAbsent" Value="This feature will not be available." />
<UIText Id="MenuAdvertise" Value="This feature will be installed when required." />
<UIText Id="MenuAllCD" Value="This feature, and all subfeatures, will be installed to run from the CD." />
<UIText Id="MenuAllLocal" Value="This feature, and all subfeatures, will be installed on local hard drive." />
<UIText Id="MenuAllNetwork" Value="This feature, and all subfeatures, will be installed to run from the network." />
<UIText Id="MenuCD" Value="This feature will be installed to run from CD." />
<UIText Id="MenuLocal" Value="This feature will be installed on local hard drive." />
<UIText Id="MenuNetwork" Value="This feature will be installed to run from network." />
<UIText Id="SelAbsentAbsent" Value="This feature will remain uninstalled." />
<UIText Id="SelAbsentAdvertise" Value="This feature will be set to be installed when required." />
<UIText Id="SelAbsentCD" Value="This feature will be installed to run from CD." />
<UIText Id="SelAbsentLocal" Value="This feature will be installed on the local hard drive." />
<UIText Id="SelAbsentNetwork" Value="This feature will be installed to run from the network." />
<UIText Id="SelAdvertiseAbsent" Value="This feature will become unavailable." />
<UIText Id="SelAdvertiseAdvertise" Value="Will be installed when required." />
<UIText Id="SelAdvertiseCD" Value="This feature will be available to run from CD." />
<UIText Id="SelAdvertiseLocal" Value="This feature will be installed on your local hard drive." />
<UIText Id="SelAdvertiseNetwork" Value="This feature will be available to run from the network." />
<UIText Id="SelCDAbsent" Value="This feature will be uninstalled completely, and you won't be able to run it from CD." />
<UIText Id="SelCDAdvertise" Value="This feature was run from the CD but will be set to be installed when required." />
<UIText Id="SelCDCD" Value="This feature will continue to be run from the CD" />
<UIText Id="SelCDLocal" Value="This feature was run from the CD but will be installed on the local hard drive." />
<UIText Id="SelChildCostNeg" Value="This feature frees up [1] on your hard drive." />
<UIText Id="SelChildCostPos" Value="This feature requires [1] on your hard drive." />
<UIText Id="SelCostPending" Value="Compiling cost for this feature..." />
<UIText Id="SelLocalAbsent" Value="This feature will be completely removed." />
<UIText Id="SelLocalAdvertise" Value="This feature will be removed from your local hard drive but will be set to be installed when required." />
<UIText Id="SelLocalCD" Value="This feature will be removed from your local hard drive but will still be available to run from CD." />
<UIText Id="SelLocalLocal" Value="This feature will remain on your local hard drive." />
<UIText Id="SelLocalNetwork" Value="This feature will be removed from your local hard drive, but will be still available to run from the network." />
<UIText Id="SelNetworkAbsent" Value="This feature will be uninstalled completely, and you won't be able to run it from the network." />
<UIText Id="SelNetworkAdvertise" Value="This feature was run from the network but will be installed when required." />
<UIText Id="SelNetworkLocal" Value="This feature was run from the network but will be installed on the local hard drive." />
<UIText Id="SelNetworkNetwork" Value="This feature will continue to be run from the network" />
<UIText Id="SelParentCostNegNeg" Value="This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive." />
<UIText Id="SelParentCostNegPos" Value="This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive." />
<UIText Id="SelParentCostPosNeg" Value="This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive." />
<UIText Id="SelParentCostPosPos" Value="This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive." />
<UIText Id="TimeRemaining" Value="Time remaining: {[1] min }[2] sec" />
<UIText Id="VolumeCostAvailable" Value="Available" />
<UIText Id="VolumeCostDifference" Value="Differences" />
<UIText Id="VolumeCostRequired" Value="Required" />
<UIText Id="VolumeCostSize" Value="Disk Size" />
<UIText Id="VolumeCostVolume" Value="Volume" />
<!-- *****************************************************************************************
Progress Texts
-->
<ProgressText Action="CostInitialize" Message="Computing space requirements" />
<ProgressText Action="AppSearch" Template="Property: [1], Signature: [2]" Message="Searching for installed applications" />
<ProgressText Action="BindImage" Template="File: [1]" Message="Binding executables" />
<ProgressText Action="CCPSearch" Message="Searching for qualifying products" />
<ProgressText Action="CostFinalize" Message="Computing space requirements" />
<ProgressText Action="FileCost" Message="Computing space requirements" />
<ProgressText Action="InstallAdminPackage" Template="File: [1], Directory: [9], Size: [6]" Message="Copying files to the network" />
<ProgressText Action="InstallFiles" Template="File: [1], Directory: [9], Size: [6]" Message="Copying new files" />
<ProgressText Action="InstallValidate" Message="Validating install" />
<ProgressText Action="CreateShortcuts" Template="Shortcut: [1]" Message="Creating shortcuts" />
<ProgressText Action="PublishComponents" Template="Component ID: [1], Qualifier: [2]" Message="Publishing qualified components" />
<ProgressText Action="PublishFeatures" Template="Feature: [1]" Message="Publishing product features" />
<ProgressText Action="PublishProduct" Message="Publishing product information" />
<ProgressText Action="RegisterClassInfo" Template="Class ID: [1]" Message="Registering class servers" />
<ProgressText Action="RegisterExtensionInfo" Template="Extension: [1]" Message="Registering extension servers" />
<ProgressText Action="RegisterMIMEInfo" Template="MIME Content Type: [1], Extension: [2]" Message="Registering MIME info" />
<ProgressText Action="RegisterProgIdInfo" Template="ProgID: [1]" Message="Registering program identifiers" />
<ProgressText Action="RegisterTypeLibraries" Template="LibID: [1]" Message="Registering type libraries" />
<ProgressText Action="AllocateRegistrySpace" Template="Free space: [1]" Message="Allocating registry space" />
<ProgressText Action="CreateFolders" Template="Folder: [1]" Message="Creating folders" />
<ProgressText Action="DeleteServices" Template="Service: [1]" Message="Deleting services" />
<ProgressText Action="DuplicateFiles" Template="File: [1], Directory: [9], Size: [6]" Message="Creating duplicate files" />
<ProgressText Action="FindRelatedProducts" Template="Found application: [1]" Message="Searching for related applications" />
<ProgressText Action="InstallODBC" Message="Installing ODBC components" />
<ProgressText Action="InstallServices" Template="Service: [2]" Message="Installing new services" />
<ProgressText Action="LaunchConditions" Message="Evaluating launch conditions" />
<ProgressText Action="MigrateFeatureStates" Template="Application: [1]" Message="Migrating feature states from related applications" />
<ProgressText Action="MoveFiles" Template="File: [1], Directory: [9], Size: [6]" Message="Moving files" />
<ProgressText Action="PatchFiles" Template="File: [1], Directory: [2], Size: [3]" Message="Patching files" />
<ProgressText Action="ProcessComponents" Message="Updating component registration" />
<ProgressText Action="RegisterComPlus" Template="AppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}" Message="Registering COM+ Applications and Components" />
<ProgressText Action="RegisterFonts" Template="Font: [1]" Message="Registering fonts" />
<ProgressText Action="RegisterProduct" Template="[1]" Message="Registering product" />
<ProgressText Action="RegisterUser" Template="[1]" Message="Registering user" />
<ProgressText Action="RemoveDuplicateFiles" Template="File: [1], Directory: [9]" Message="Removing duplicated files" />
<ProgressText Action="RemoveEnvironmentStrings" Template="Name: [1], Value: [2], Action [3]" Message="Updating environment strings" />
<ProgressText Action="RemoveExistingProducts" Template="Application: [1], Command line: [2]" Message="Removing applications" />
<ProgressText Action="RemoveFiles" Template="File: [1], Directory: [9]" Message="Removing files" />
<ProgressText Action="RemoveFolders" Template="Folder: [1]" Message="Removing folders" />
<ProgressText Action="RemoveIniValues" Template="File: [1], Section: [2], Key: [3], Value: [4]" Message="Removing INI file entries" />
<ProgressText Action="RemoveODBC" Message="Removing ODBC components" />
<ProgressText Action="RemoveRegistryValues" Template="Key: [1], Name: [2]" Message="Removing system registry values" />
<ProgressText Action="RemoveShortcuts" Template="Shortcut: [1]" Message="Removing shortcuts" />
<ProgressText Action="RMCCPSearch" Message="Searching for qualifying products" />
<ProgressText Action="SelfRegModules" Template="File: [1], Folder: [2]" Message="Registering modules" />
<ProgressText Action="SelfUnregModules" Template="File: [1], Folder: [2]" Message="Unregistering modules" />
<ProgressText Action="SetODBCFolders" Message="Initializing ODBC directories" />
<ProgressText Action="StartServices" Template="Service: [1]" Message="Starting services" />
<ProgressText Action="StopServices" Template="Service: [1]" Message="Stopping services" />
<ProgressText Action="UnpublishComponents" Template="Component ID: [1], Qualifier: [2]" Message="Unpublishing Qualified Components" />
<ProgressText Action="UnpublishFeatures" Template="Feature: [1]" Message="Unpublishing product features" />
<ProgressText Action="UnregisterClassInfo" Template="Class ID: [1]" Message="Unregister class servers" />
<ProgressText Action="UnregisterComPlus" Template="AppId: [1]{{, AppType: [2]}}" Message="Unregistering COM+ Applications and Components" />
<ProgressText Action="UnregisterExtensionInfo" Template="Extension: [1]" Message="Unregistering extension servers" />
<ProgressText Action="UnregisterFonts" Template="Font: [1]" Message="Unregistering fonts" />
<ProgressText Action="UnregisterMIMEInfo" Template="MIME Content Type: [1], Extension: [2]" Message="Unregistering MIME info" />
<ProgressText Action="UnregisterProgIdInfo" Template="ProgID: [1]" Message="Unregistering program identifiers" />
<ProgressText Action="UnregisterTypeLibraries" Template="LibID: [1]" Message="Unregistering type libraries" />
<ProgressText Action="WriteEnvironmentStrings" Template="Name: [1], Value: [2], Action [3]" Message="Updating environment strings" />
<ProgressText Action="WriteIniValues" Template="File: [1], Section: [2], Key: [3], Value: [4]" Message="Writing INI file values" />
<ProgressText Action="WriteRegistryValues" Template="Key: [1], Name: [2], Value: [3]" Message="Writing system registry values" />
<ProgressText Action="Advertise" Message="Advertising application" />
<ProgressText Action="GenerateScript" Template="[1]" Message="Generating script operations for action:" />
<ProgressText Action="InstallSFPCatalogFile" Template="File: [1], Dependencies: [2]" Message="Installing system catalog" />
<ProgressText Action="Rollback" Template="[1]" Message="Rolling back action:" />
<ProgressText Action="RollbackCleanup" Template="File: [1]" Message="Removing backup files" />
<ProgressText Action="UnmoveFiles" Template="File: [1], Directory: [9]" Message="Removing moved files" />
<ProgressText Action="UnpublishProduct" Message="Unpublishing product information" />
<!-- *****************************************************************************************
Error Texts
-->
<Error Id="0" Message="{{Fatal error: }}" />
<Error Id="1" Message="Error [1]." />
<Error Id="2" Message="Warning [1]." />
<Error Id="4" Message="Info [1]." />
<Error Id="5" Message="Internal Error [1]. [2]{, [3]}{, [4]}" />
<Error Id="7" Message="{{Disk full: }}" />
<Error Id="8" Message="Action [Time]: [1]. [2]" />
<Error Id="9" Message="[ProductName]" />
<Error Id="10" Message="{[2]}{, [3]}{, [4]}" />
<Error Id="11" Message="Message type: [1], Argument: [2]" />
<Error Id="12" Message="=== Logging started: [Date] [Time] ===" />
<Error Id="13" Message="=== Logging stopped: [Date] [Time] ===" />
<Error Id="14" Message="Action start [Time]: [1]." />
<Error Id="15" Message="Action ended [Time]: [1]. Return value [2]." />
<Error Id="16" Message="Time remaining: {[1] minutes }{[2] seconds}" />
<Error Id="17" Message="Out of memory. Shut down other applications before retrying." />
<Error Id="18" Message="Installer is no longer responding." />
<Error Id="19" Message="Installer terminated prematurely." />
<Error Id="20" Message="Please wait while Windows configures [ProductName]" />
<Error Id="21" Message="Gathering required information..." />
<Error Id="22" Message="Removing older versions of this application" />
<Error Id="23" Message="Preparing to remove older versions of this application" />
<Error Id="32" Message="{[ProductName] }Setup completed successfully." />
<Error Id="33" Message="{[ProductName] }Setup failed." />
<Error Id="1101" Message="Error reading from file: [2]. {{ System error [3].}} Verify that the file exists and that you can access it." />
<Error Id="1301" Message="Cannot create the file [3]. A directory with this name already exists. Cancel the installation and try installing to a different location." />
<Error Id="1302" Message="Please insert the disk: [2]" />
<Error Id="1303" Message="The installer has insufficient privileges to access this directory: [2]. The installation cannot continue. Log on as an administrator or contact your system administrator." />
<Error Id="1304" Message="Error writing to file [2]. Verify that you have access to that directory." />
<Error Id="1305" Message="Error reading from file [2]. Verify that the file exists and that you can access it." />
<Error Id="1306" Message="Another application has exclusive access to the file [2]. Please shut down all other applications, then click Retry." />
<Error Id="1307" Message="There is not enough disk space to install the file [2]. Free some disk space and click Retry, or click Cancel to exit." />
<Error Id="1308" Message="Source file not found: [2]. Verify that the file exists and that you can access it." />
<Error Id="1309" Message="Error reading from file: [3]. {{ System error [2].}} Verify that the file exists and that you can access it." />
<Error Id="1310" Message="Error writing to file: [3]. {{ System error [2].}} Verify that you have access to that directory." />
<Error Id="1311" Message="Source file not found{{(cabinet)}}: [2]. Verify that the file exists and that you can access it." />
<Error Id="1312" Message="Cannot create the directory [2]. A file with this name already exists. Please rename or remove the file and click Retry, or click Cancel to exit." />
<Error Id="1313" Message="The volume [2] is currently unavailable. Please select another." />
<Error Id="1314" Message="The specified path [2] is unavailable." />
<Error Id="1315" Message="Unable to write to the specified folder [2]." />
<Error Id="1316" Message="A network error occurred while attempting to read from the file [2]" />
<Error Id="1317" Message="An error occurred while attempting to create the directory [2]" />
<Error Id="1318" Message="A network error occurred while attempting to create the directory [2]" />
<Error Id="1319" Message="A network error occurred while attempting to open the source file cabinet [2]." />
<Error Id="1320" Message="The specified path is too long [2]." />
<Error Id="1321" Message="The Installer has insufficient privileges to modify the file [2]." />
<Error Id="1322" Message="A portion of the path [2] exceeds the length allowed by the system." />
<Error Id="1323" Message="The path [2] contains words that are not valid in folders." />
<Error Id="1324" Message="The path [2] contains an invalid character." />
<Error Id="1325" Message="[2] is not a valid short file name." />
<Error Id="1326" Message="Error getting file security: [3] GetLastError: [2]" />
<Error Id="1327" Message="Invalid Drive: [2]" />
<Error Id="1328" Message="Error applying patch to file [2]. It has probably been updated by other means, and can no longer be modified by this patch. For more information contact your patch vendor. {{System Error: [3]}}" />
<Error Id="1401" Message="Could not create key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel." />
<Error Id="1402" Message="Could not open key: [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel." />
<Error Id="1403" Message="Could not delete value [2] from key [3]. {{ System error [4].}} Verify that you have sufficient access to that key, or contact your support personnel." />
<Error Id="1404" Message="Could not delete key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel." />
<Error Id="1405" Message="Could not read value [2] from key [3]. {{ System error [4].}} Verify that you have sufficient access to that key, or contact your support personnel." />
<Error Id="1406" Message="Could not write value [2] to key [3]. {{ System error [4].}} Verify that you have sufficient access to that key, or contact your support personnel." />
<Error Id="1407" Message="Could not get value names for key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel." />
<Error Id="1408" Message="Could not get sub key names for key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel." />
<Error Id="1409" Message="Could not read security information for key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel." />
<Error Id="1410" Message="Could not increase the available registry space. [2] KB of free registry space is required for the installation of this application." />
<Error Id="1500" Message="Another installation is in progress. You must complete that installation before continuing this one." />
<Error Id="1501" Message="Error accessing secured data. Please make sure the Windows Installer is configured properly and try the installation again." />
<Error Id="1502" Message="User [2] has previously initiated an installation for product [3]. That user will need to run that installation again before using that product. Your current installation will now continue." />
<Error Id="1503" Message="User [2] has previously initiated an installation for product [3]. That user will need to run that installation again before using that product." />
<Error Id="1601" Message="Out of disk space -- Volume: '[2]'; required space: [3] KB; available space: [4] KB. Free some disk space and retry." />
<Error Id="1602" Message="Are you sure you want to cancel?" />
<Error Id="1603" Message="The file [2][3] is being held in use{ by the following process: Name: [4], ID: [5], Window Title: [6]}. Close that application and retry." />
<Error Id="1604" Message="The product [2] is already installed, preventing the installation of this product. The two products are incompatible." />
<Error Id="1605" Message="Out of disk space -- Volume: [2]; required space: [3] KB; available space: [4] KB. If rollback is disabled, enough space is available. Click Cancel to quit, Retry to check available disk space again, or Ignore to continue without rollback." />
<Error Id="1606" Message="Could not access network location [2]." />
<Error Id="1607" Message="[2]" />
<Error Id="1608" Message="Could not find any previously installed compliant products on the machine for installing this product." />
<Error Id="1701" Message="The key [2] is not valid. Verify that you entered the correct key." />
<Error Id="1702" Message="The installer must restart your system before configuration of [2] can continue. Click Yes to restart now or No if you plan to restart later." />
<Error Id="1703" Message="You must restart your system for the configuration changes made to [2] to take effect. Click Yes to restart now or No if you plan to restart later." />
<Error Id="1704" Message="An installation for [2] is currently suspended. You must undo the changes made by that installation to continue. Do you want to undo those changes?" />
<Error Id="1705" Message="A previous installation for this product is in progress. You must undo the changes made by that installation to continue. Do you want to undo those changes?" />
<Error Id="1706" Message="No valid source could be found for product [2]. The Windows Installer cannot continue." />
<Error Id="1707" Message="Installation operation completed successfully." />
<Error Id="1708" Message="Installation operation failed." />
<Error Id="1709" Message="Product: [2] -- [3]" />
<Error Id="1710" Message="You may either restore your computer to its previous state or continue the installation later. Would you like to restore?" />
<Error Id="1711" Message="An error occurred while writing installation information to disk. Check to make sure enough disk space is available, and click Retry, or Cancel to end the installation." />
<Error Id="1712" Message="One or more of the files required to restore your computer to its previous state could not be found. Restoration will not be possible." />
<Error Id="1713" Message="[2] cannot install one of its required products. Contact your technical support group. {{System Error: [3].}}" />
<Error Id="1714" Message="The older version of [2] cannot be removed. Contact your technical support group. {{System Error [3].}}" />
<Error Id="1801" Message="The path [2] is not valid. Please specify a valid path." />
<Error Id="1802" Message="Out of memory. Shut down other applications before retrying." />
<Error Id="1803" Message="There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to go back to the previously selected volume." />
<Error Id="1804" Message="There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to return to the browse dialog and select a different volume." />
<Error Id="1805" Message="The folder [2] does not exist. Please enter a path to an existing folder." />
<Error Id="1806" Message="You have insufficient privileges to read this folder." />
<Error Id="1807" Message="A valid destination folder for the installation could not be determined." />
<Error Id="1901" Message="Error attempting to read from the source installation database: [2]." />
<Error Id="1902" Message="Scheduling reboot operation: Renaming file [2] to [3]. Must reboot to complete operation." />
<Error Id="1903" Message="Scheduling reboot operation: Deleting file [2]. Must reboot to complete operation." />
<Error Id="1904" Message="Module [2] failed to register. HRESULT [3]. Contact your support personnel." />
<Error Id="1905" Message="Module [2] failed to unregister. HRESULT [3]. Contact your support personnel." />
<Error Id="1906" Message="Failed to cache package [2]. Error: [3]. Contact your support personnel." />
<Error Id="1907" Message="Could not register font [2]. Verify that you have sufficient permissions to install fonts, and that the system supports this font." />
<Error Id="1908" Message="Could not unregister font [2]. Verify that you have sufficient permissions to remove fonts." />
<Error Id="1909" Message="Could not create shortcut [2]. Verify that the destination folder exists and that you can access it." />
<Error Id="1910" Message="Could not remove shortcut [2]. Verify that the shortcut file exists and that you can access it." />
<Error Id="1911" Message="Could not register type library for file [2]. Contact your support personnel." />
<Error Id="1912" Message="Could not unregister type library for file [2]. Contact your support personnel." />
<Error Id="1913" Message="Could not update the INI file [2][3]. Verify that the file exists and that you can access it." />
<Error Id="1914" Message="Could not schedule file [2] to replace file [3] on reboot. Verify that you have write permissions to file [3]." />
<Error Id="1915" Message="Error removing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel." />
<Error Id="1916" Message="Error installing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel." />
<Error Id="1917" Message="Error removing ODBC driver [4], ODBC error [2]: [3]. Verify that you have sufficient privileges to remove ODBC drivers." />
<Error Id="1918" Message="Error installing ODBC driver [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it." />
<Error Id="1919" Message="Error configuring ODBC data source [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it." />
<Error Id="1920" Message="Service [2] ([3]) failed to start. Verify that you have sufficient privileges to start system services." />
<Error Id="1921" Message="Service [2] ([3]) could not be stopped. Verify that you have sufficient privileges to stop system services." />
<Error Id="1922" Message="Service [2] ([3]) could not be deleted. Verify that you have sufficient privileges to remove system services." />
<Error Id="1923" Message="Service [2] ([3]) could not be installed. Verify that you have sufficient privileges to install system services." />
<Error Id="1924" Message="Could not update environment variable [2]. Verify that you have sufficient privileges to modify environment variables." />
<Error Id="1925" Message="You do not have sufficient privileges to complete this installation for all users of the machine. Log on as an administrator and then retry this installation." />
<Error Id="1926" Message="Could not set file security for file [3]. Error: [2]. Verify that you have sufficient privileges to modify the security permissions for this file." />
<Error Id="1927" Message="Component Services (COM+ 1.0) are not installed on this computer. This installation requires Component Services in order to complete successfully. Component Services are available on Windows 2000." />
<Error Id="1928" Message="Error registering COM+ application. Contact your support personnel for more information." />
<Error Id="1929" Message="Error unregistering COM+ application. Contact your support personnel for more information." />
<Error Id="1930" Message="The description for service '[2]' ([3]) could not be changed." />
<Error Id="1931" Message="The Windows Installer service cannot update the system file [2] because the file is protected by Windows. You may need to update your operating system for this program to work correctly. {{Package version: [3], OS Protected version: [4]}}" />
<Error Id="1932" Message="The Windows Installer service cannot update the protected Windows file [2]. {{Package version: [3], OS Protected version: [4], SFP Error: [5]}}" />
<Error Id="1933" Message="This setup requires Internet Information Server 4.0 or higher for configuring IIS Virtual Roots. Please make sure that you have IIS 4.0 or higher." />
<Error Id="1934" Message="This setup requires Administrator privileges for configuring IIS Virtual Roots." />
</UI>
</Include>