Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8813325
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T03:49:15+00:00 2026-06-14T03:49:15+00:00

I have the following ComboBox declared in a custom Dialog: <Control Id=EnvironmentCombobox Type=ComboBox Sorted=yes

  • 0

I have the following ComboBox declared in a custom Dialog:

    <Control Id="EnvironmentCombobox" Type="ComboBox" Sorted="yes" ComboList="yes" Property="ENVIRONMENT" X="25" Y="110" Width="200" Height="15">
      <ComboBox Property="ENVIRONMENT">
        <ListItem Text="Development" Value="Development" />
        <ListItem Text="SIT" Value="SIT" />
        <ListItem Text="UAT" Value="UAT" />
        <ListItem Text="Production" Value="Production" />
      </ComboBox>
    </Control>

When I run my installer and get to that dialog, the ComboBox doesn’t show until I run my mouse over it. It also appears when if I hit a navigation button. If I leave and come back to the dialog, it is gone again, until I mouse over it or hit a navigation button.

I’ve tried setting Hidden="no" and increasing the height, but no luck.


Adding full files, per request in comments.

The above is in the EnvironmentDlg:

    <?xml version="1.0" encoding="UTF-8"?>
    <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
        <Fragment>
        <UI>
          <Dialog Id="EnvironmentDlg" Width="370" Height="270" Title="[ProductName] Setup">
            <!-- Layout. -->
            <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.LicenseAgreementDlgBannerBitmap)" />
            <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
            <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />

            <!-- Content. -->
            <Control Id="Title" Type="Text" X="15" Y="15" Width="300" Height="15" Transparent="yes" NoPrefix="yes" Text="{\WixUI_Font_Title}Choose environment for [ProductName]" />
            <Control Id="InstallText" Type="Text" X="25" Y="70" Width="320" Height="80" Text="Choose the environment to which [ProductName] is being installed." />
            <Control Id="EnvironmentCombobox" Type="ComboBox" Sorted="yes" ComboList="yes" Property="ENVIRONMENT" X="25" Y="110" Width="200" Height="15">
              <ComboBox Property="ENVIRONMENT">
                <ListItem Text="Development" Value="Development" />
                <ListItem Text="SIT" Value="SIT" />
                <ListItem Text="UAT" Value="UAT" />
                <ListItem Text="Production" Value="Production" />
              </ComboBox>
            </Control>

            <!-- Navigation. -->
            <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" />
            <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)">
              <!-- Don't allow user to continue until they have selected an environment. -->
              <Condition Action="disable">ENVIRONMENT = ""</Condition>
              <Condition Action="enable"><![CDATA[ENVIRONMENT <> ""]]></Condition>
            </Control>
            <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
              <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
            </Control>        
          </Dialog>
        </UI>
        </Fragment>
    </Wix>

The sequence is in MyWixUI_Unsecured:

    <?xml version="1.0" encoding="UTF-8"?>
    <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
        <Fragment>
        <UI Id="MyWixUI_Unsecured">
          <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" />
          <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" />
          <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" />

          <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" />

          <DialogRef Id="ErrorDlg" />
          <DialogRef Id="FatalError" />
          <DialogRef Id="FilesInUse" />
          <DialogRef Id="MsiRMFilesInUse" />
          <DialogRef Id="PrepareDlg" />
          <DialogRef Id="ProgressDlg" />
          <DialogRef Id="ResumeDlg" />
          <DialogRef Id="UserExit" />

          <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999">1</Publish>

          <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="EnvironmentDlg">1</Publish>

          <Publish Dialog="EnvironmentDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg">1</Publish>
          <Publish Dialog="EnvironmentDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>

          <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="EnvironmentDlg">1</Publish>
        </UI>

        <UIRef Id="WixUI_Common" />
        </Fragment>
    </Wix>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T03:49:16+00:00Added an answer on June 14, 2026 at 3:49 am

    The issue is regarding the Height of InstallText control in EnvironmentDlg.

    Change the Height to 25

    <Control Id="InstallText" Type="Text" X="25" Y="70" Width="320" Height="25" Text="Choose the environment to which [ProductName] is being installed." />
    

    Full Code:

    <?xml version="1.0" encoding="utf-8"?>
    <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
        <Fragment>
            <UI>
                <Dialog Id="EnvironmentDlg" Width="370" Height="270" Title="[ProductName] Setup">
                    <!-- Layout. -->
                    <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.LicenseAgreementDlgBannerBitmap)" />
                    <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
                    <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
                    <!-- Content. -->
                    <Control Id="Title" Type="Text" X="15" Y="15" Width="300" Height="15" Transparent="yes" NoPrefix="yes" Text="{\WixUI_Font_Title}Choose environment for [ProductName]" />
                    <Control Id="InstallText" Type="Text" X="25" Y="70" Width="320" Height="25" Text="Choose the environment to which [ProductName] is being installed." />
                    <Control Id="EnvironmentCombobox" Type="ComboBox" Sorted="yes" ComboList="yes" Property="ENVIRONMENT" X="25" Y="110" Width="200" Height="15">
                        <ComboBox Property="ENVIRONMENT">
                            <ListItem Text="Development" Value="Development" />
                            <ListItem Text="SIT" Value="SIT" />
                            <ListItem Text="UAT" Value="UAT" />
                            <ListItem Text="Production" Value="Production" />
                        </ComboBox>
                    </Control>
                    <!-- Navigation. -->
                    <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" />
                    <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)">
                        <!-- Don't allow user to continue until they have selected an environment. -->
                        <Condition Action="disable">ENVIRONMENT = ""</Condition>
                        <Condition Action="enable"><![CDATA[ENVIRONMENT <> ""]]></Condition>
                    </Control>
                    <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
                        <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
                    </Control>
                </Dialog>
            </UI>
        </Fragment>
    </Wix>
    

    I will suggest you using WixEdit control for designing UI

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following markup: <input type=text id=comboBox /> <ul id=comboBoxData> <li>1</li> <li>12</li> <li>123</li>
I have the following inside a user control called UserInputOutput : <ComboBox Grid.Column=1 Background=White
I have the following collection which i would like to bind to a combobox:
I have a combobox that is bound to an enum using the following code:
I have following div in a page (I can not modify). <div id=:0.control>Click me</div>
I have the following table structure: I'm trying to populate a combobox of all
I have the following scenario. I have a combobox where multiple selection is available.
Background I have a Windows Form with the following items: ComboBox TextBox Two Buttons
I have following combobox: <ComboBox x:Name=cmb2 ItemsSource={Binding SignCollection, Mode=OneWay}/> Sign Collection is List and
I have included the following style for ComboBox , which I happened to find

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.