This is my last stumbling block on my WiX 2.0 to 3.0 conversion. The UI
in all my projects is basically the same. It predates my use of WiX in
our company, so I'm not sure where it came from, but it's not
WixUI_Mondo, I do know that.

The pre-existing RadioButtonGroup definition is causing me some
problems.

The entry (there's more than one, but this is a good example) looks like
this

<RadioButtonGroup Property="MaintenanceMode">
<RadioButton Text="[ButtonFont]&amp;Add/remove" X="10" Y="5" Width="265"
Height="15" Value="AddRemove" />
<RadioButton Text="[ButtonFont]&amp;Remove all" X="10" Y="25"
Width="265" Height="15" Value="RemoveAll" />
<RadioButton Text="[ButtonFont]R&amp;einstall" X="10" Y="45" Width="265"
Height="15" Value="Reinstall" />
</RadioButtonGroup>

With this in my package I get this linker error.

error LGHT0094 : Unresolved reference to symbol
'Property:MaintenanceMode' in section 'Fragment:UpdateUIStandard'.

If I comment out my RadioButtonGroup, just to see what happens, I get
this error.

error LGHT0204 : ICE34: You must have a RadioButton table because
MaintenanceDialog.MaintenanceMode1 is a RadioButtonGroup control.

Finally, my UI has a dialog in it that has this control, which I would
have thought was my reference to the group above.

<Control Id="MaintenanceMode1" Type="RadioButtonGroup" X="26" Y="72"
Width="305" Height="60" Property="MaintenanceMode" />

This was working fine in WiX 2.0 and I'm not seeing any syntactical
problems so far. Anybody else see what might be wrong? I'm open to any
suggestions.

Thanks
Chad


------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to