Am stuck with combo box and custom action in WIX installer.

I have a combo box(drop down) containing few values. I want to show some text on the screen (unique for each item in dropdown) when the user selects a value from this drop down.

In .Net we can do this easily as we have different events pre-defined. But in WIX I don't see any such event.

Has someone faced the same problem? Or can guide me on how can I get it done.

link|improve this question

74% accept rate
feedback

1 Answer

up vote 4 down vote accepted
+25

Windows Installer (the underlying technology) doesn't let you do so. Literally, it doesn't publish any event when the combobox (dropdown) value changes. You'll have to add a button, for instance, for user to click when he/she changed the value in the combobox...

Alternatively, you can switch to the EmbeddedUI technique (WiX element and MSI table), but it is much more advanced...

UPDATE: a sample of using button click to update the text.

<UI>
  ...
  <ComboBox Property="WIX_VERSIONS">
    <ListItem Value="Windows Installer XML 3.0" />
    <ListItem Value="Windows Installer XML 3.5" />
    <ListItem Value="Windows Installer XML 3.6" />
  </ComboBox>
  ...
  <Dialog Id="MyCustomDlg">
    ...
      <Control Id="ComboBoxMain" Type="ComboBox" X="10" Y="60" Width="300" Height="17" Property="WIX_VERSIONS" />
      <Control Id="ButtonMain" Type="PushButton" X="320" Y="60" Width="40" Height="17" Text="Show">
        <Publish Property="COMBOVALUEFORMATTED" Value="You've chosen the [WIX_VERSIONS] version of the toolset" />
      </Control>
      <Control Id="LabelMain" Type="Text" X="10" Y="80" Width="360" Height="17" Property="COMBOVALUEFORMATTED" Text="[COMBOVALUEFORMATTED]" />
    ...
  </Dialog>
</UI>

PushButton can publish more events, for instance, DoAction, which is used to run a custom action on button click. This might be more relevant in your case.

link|improve this answer
can you please provide me an example for same? – Sunil Agarwal Aug 8 '11 at 11:54
I've updated my answer with the sample – Yan Sklyarenko Aug 8 '11 at 21:58
this i know, but using some external tool or something else can't I achieve wat i exactly want? – Sunil Agarwal Aug 9 '11 at 5:44
Yes, you can. Option 1: create a custom application which will handle all the wizard logic itself, and call the msiexec with your package at the very end, when you gathered all the information from the user/system. Option 2: use EmbeddedUI technique I mentioned above (this is supported from MSI 4.5 and higher, and requires you to create a special DLL to handle all the UI logic itself). Both options have their benefits and drawbacks, both are the workarounds to the Windows Installer UI limitations. – Yan Sklyarenko Aug 9 '11 at 6:55
1  
The sample of EmbeddedUI: msdn.microsoft.com/en-us/library/cc542588.aspx. Pay attention to the comments as well... – Yan Sklyarenko Aug 9 '11 at 7:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.