Hi All,

I've got a couple ComboBoxes each of which have some values.  When I run
the installer on Windows XP the values show up in the dropdown list as
expected.  When running on Windows 2000 Server, the dropdown list is
empty--it drops down but there's nothing in it.  Is there something I
should know about Windows 2000 Server and MSI?  Below is my code...


<?xml version='1.0' encoding='UTF-8'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
  <Fragment>
    <UI>
      <Dialog Id='ConfigureDlg' Width='370' Height='270'
Title='[ProductName] [Setup]' NoMinimize='yes'>
        <Control Id='lblSetInstanceId' Type='Text' X='20' Y='60'
Width='100' Height='13' Text='Instance Id:' RightAligned='yes' />
        <Control Id='txtInstanceId' Type='Edit' X='122' Y='57'
Width='100' Height='15' Property='SET_INSTANCE_ID'>
          <Condition Action='disable'>Installed</Condition>
        </Control>
        
        <Control Id='lblSetDefaultLocale' Type='Text' X='20' Y='87'
Width='100' Height='13' Text='Default Locale:' RightAligned='yes' />
        <Control Id='cmbLocale' Type='ComboBox' X='122' Y='84'
Width='100' Height='13' Property='SET_LOCALE'>
          <ComboBox Property='SET_LOCALE'>
            <ListItem Text='English (UK)' Value='en-uk' />
            <ListItem Text='English (USA)' Value='en-us' />
            <ListItem Text='French (France)' Value='fr-fr' />
            <ListItem Text='Portuguese (Brazil)' Value='pt-br' />
            <ListItem Text='Spanish (Mexico)' Value='sp-mx' />
          </ComboBox>
        </Control>

        <Control Id='lblSetDbType' Type='Text' X='20' Y='114'
Width='100' Height='13' Text='Database Type:' RightAligned='yes' />
        <Control Id='cmbDbType' Type='ComboBox' X='122' Y='111'
Width='100' Height='13' Property='SET_DATABASE_PROVIDER'>
          <ComboBox Property='SET_DATABASE_PROVIDER'>
            <ListItem Text='Oracle' Value='Oracle' />
          </ComboBox>
        </Control>

        <Control Id='lblSetWebsite' Type='Text' X='20' Y='158'
Width='100' Height='13' Text='Website:' RightAligned='yes' />
        <Control Id='cmbWebsite' Type='ComboBox' X='122' Y='155'
Width='100' Height='13' Property='SET_WEBSITE'>
          <ComboBox Property='SET_WEBSITE'>
            <ListItem Text='test' Value='test'/>
          </ComboBox>
          <Condition Action='disable'>Installed</Condition>
        </Control>

        <Control Id='btnAdvanceSettings' Type='PushButton' X='10'
Y='243' Width='100' Height='17' Text='Advanced Settings'>
          <Publish Event='NewDialog' Value='ConfigureAdvDlg'>1</Publish>
        </Control>
        <Control Id='Back' Type='PushButton' X='180' Y='243' Width='56'
Height='17' Text='&amp;Back'>
          <Publish Event='NewDialog' Value='CustomizeDlg'>1</Publish>
        </Control>
        <Control Id='Next' Type='PushButton' X='236' Y='243' Width='56'
Height='17' Default='yes' Text='&amp;Next'>
          <Publish Event='NewDialog' Value='VerifyReadyDlg'>1</Publish>
          <Condition Action='disable'><![CDATA[SET_INSTANCE_ID =
""]]></Condition>
          <Condition Action='enable'><![CDATA[SET_INSTANCE_ID <>
""]]></Condition>
        </Control>
        <Control Id='Cancel' Type='PushButton' X='304' Y='243'
Width='56' Height='17' Cancel='yes' Text='Cancel'>
          <Publish Event='SpawnDialog' Value='CancelDlg'>1</Publish>
        </Control>
        <Control Id='BannerBitmap' Type='Bitmap' X='0' Y='0' Width='370'
Height='44' TabSkip='no' Text='WixUI_Bmp_Banner' />
        <Control Id='Description' Type='Text' X='25' Y='23' Width='280'
Height='13' Transparent='yes' NoPrefix='yes'>
          <Text>Select and configure server features to be
installed:</Text>
        </Control>
        <Control Id='BottomLine' Type='Line' X='0' Y='234' Width='370'
Height='0' />
        <Control Id='Title' Type='Text' X='15' Y='6' Width='200'
Height='13' Transparent='yes' NoPrefix='yes'>
          <Text>{\WixUI_Font_Title}Customer Information</Text>
        </Control>
        <Control Id='BannerLine' Type='Line' X='0' Y='44' Width='370'
Height='0' />
      </Dialog>
    </UI>
  </Fragment>
</Wix>



Thanks,
Kevin
------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to