Tripphippy
2009-03-27 21:10:29 UTC
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<UI>
<Dialog Id="QuoteServerDlg" Width="370" Height="270" Title="Select Quote Server">
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" />
<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>
<Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes" Text="Please Select the Quote Server to use with Microhedge" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="[ProductName] Setup" />
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.InstallDirDlgBannerBitmap)" />
<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" />
<Control Id="QuoteServer" Type="RadioButtonGroup" X="20" Y="50" Width="340" Height="200" Property="QuoteServer"/>
</Dialog>
<RadioButtonGroup Property="QuoteServer">
<RadioButton Text="Spryware"
Value="Spryware" X="5" Y="0" Width="250" Height="15" />
<RadioButton Text="Activ"
Value="Activ" X="5" Y="20" Width="250" Height="15" />
<RadioButton Text="ThompsonONE"
Value="ThompsonONE" X="5" Y="40" Width="250" Height="15" />
<RadioButton Text="Reuters"
Value="Reuters" X="5" Y="60" Width="250" Height="15" />
<RadioButton Text="Static / Demo"
Value="Static" X="5" Y="80" Width="250" Height="15" />
</RadioButtonGroup>
</UI>
</Fragment>
</Wix>
QuoteServerDlg.wxs(19,0): error LGHT0094: Unresolved reference to symbol 'Property:QuoteServer' in section 'Fragment:'.
This is a custom dialog for some configuration settings in my install.
I'm using Wix3.0 in vc9 with votive.
In my understanding, the above code will generate a radio button group with 5 buttons. The buttons set the property [QuoteServer] to the values of 'Spryware' 'Activ' ect... depending on the button selected. I can then read values from [QuoteServer] for conditional installs and such.
What am I doing wrong here? Why is it not referencing the RadioButtonGroup Property value?
-Tripphippy
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<UI>
<Dialog Id="QuoteServerDlg" Width="370" Height="270" Title="Select Quote Server">
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" />
<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>
<Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes" Text="Please Select the Quote Server to use with Microhedge" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="[ProductName] Setup" />
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.InstallDirDlgBannerBitmap)" />
<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" />
<Control Id="QuoteServer" Type="RadioButtonGroup" X="20" Y="50" Width="340" Height="200" Property="QuoteServer"/>
</Dialog>
<RadioButtonGroup Property="QuoteServer">
<RadioButton Text="Spryware"
Value="Spryware" X="5" Y="0" Width="250" Height="15" />
<RadioButton Text="Activ"
Value="Activ" X="5" Y="20" Width="250" Height="15" />
<RadioButton Text="ThompsonONE"
Value="ThompsonONE" X="5" Y="40" Width="250" Height="15" />
<RadioButton Text="Reuters"
Value="Reuters" X="5" Y="60" Width="250" Height="15" />
<RadioButton Text="Static / Demo"
Value="Static" X="5" Y="80" Width="250" Height="15" />
</RadioButtonGroup>
</UI>
</Fragment>
</Wix>
QuoteServerDlg.wxs(19,0): error LGHT0094: Unresolved reference to symbol 'Property:QuoteServer' in section 'Fragment:'.
This is a custom dialog for some configuration settings in my install.
I'm using Wix3.0 in vc9 with votive.
In my understanding, the above code will generate a radio button group with 5 buttons. The buttons set the property [QuoteServer] to the values of 'Spryware' 'Activ' ect... depending on the button selected. I can then read values from [QuoteServer] for conditional installs and such.
What am I doing wrong here? Why is it not referencing the RadioButtonGroup Property value?
-Tripphippy
--
View this message in context: http://n2.nabble.com/Problem-with-radio-buttons-property-tp2546685p2546685.html
Sent from the wix-users mailing list archive at Nabble.com.
View this message in context: http://n2.nabble.com/Problem-with-radio-buttons-property-tp2546685p2546685.html
Sent from the wix-users mailing list archive at Nabble.com.