Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread garymonk
I added the following statements to the bundle...

Variable Name=InstallClient Type=numeric Value=0 /
Variable Name=InstallServer Type=numeric Value=0 /

and modified the button statements as follows...

Button Name=ClientInstall X=160 Y=130 Width=-11 Height=17
TabStop=yes FontId=3 HexStyle=0x09Guru Teach Client Only/Button
Button Name=ServerInstall X=160 Y=155 Width=-11 Height=17
TabStop=yes FontId=3 HexStyle=0x09Guru Teach Client and
Server/Button

and the buttons are disabled when the dialog is displayed.

How do I make the buttons enabled?

Thanks,
Gary 



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unable-to-select-radio-buttons-in-Hyperlink-Theme-tp7598537p7598543.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme [P]

2014-12-12 Thread Steven Ogilvie
Classification: Public
Gary 

You set them to 0 which makes them unselected, change one or both values to 1

Also, you need to use overridable in your variable name in the bundle.wxs i.e.:

Variable Name=InstallClient Type=numeric bal:Overridable=yes Value=1 
/ Variable Name=InstallServer Type=numeric bal:Overridable=yes 
Value=0 /

Cheers,

Steve

-Original Message-
From: garymonk [mailto:g...@gurudental.com]
Sent: December-12-14 11:19 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

I added the following statements to the bundle...

Variable Name=InstallClient Type=numeric Value=0 / Variable 
Name=InstallServer Type=numeric Value=0 /

and modified the button statements as follows...

Button Name=ClientInstall X=160 Y=130 Width=-11 Height=17
TabStop=yes FontId=3 HexStyle=0x09Guru Teach Client Only/Button 
Button Name=ServerInstall X=160 Y=155 Width=-11 Height=17
TabStop=yes FontId=3 HexStyle=0x09Guru Teach Client and 
Server/Button

and the buttons are disabled when the dialog is displayed.

How do I make the buttons enabled?

Thanks,
Gary 



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unable-to-select-radio-buttons-in-Hyperlink-Theme-tp7598537p7598543.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! 
Instantly Supercharge Your Business Reports and Dashboards with Interactivity, 
Sharing, Native Excel Exports, App Integration  more Get technology previously 
reserved for billion-dollar corporations, FREE 
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

 
This message has been marked as Public by Steven Ogilvie on December-12-14 
11:28:32 AM.

The above classification labels were added to the message by TITUS Message 
Classification. 
For more information visit www.titus.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread Phill Hogland
anything the BA modifies needs to have bal:overridable='yes'

Variable Name=InstallClient Type=numeric Value=0
bal:overridable='yes' /
Variable Name=InstallServer Type=numeric Value=0
bal:overridable='yes' /



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unable-to-select-radio-buttons-in-Hyperlink-Theme-tp7598537p7598546.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme [P]

2014-12-12 Thread garymonk
I changed the variables to...

Variable Name=InstallClient Type=numeric bal:Overridable=yes
Value=1 / 
Variable Name=InstallServer Type=numeric bal:Overridable=yes
Value=0 /

and they are still disabled.

Is this a bug?

Thanks,
Gary



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Re-Unable-to-select-radio-buttons-in-Hyperlink-Theme-P-tp7598544p7598547.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread garymonk
I have the following code and they are still disabled.

Bundle Name=Guru Teach Installation Version=6.0.4.0 Manufacturer=Guru
Dental UpgradeCode=ef8d3106-2b45-4ff2-b95b-3d24b4ef5f2f
BootstrapperApplicationRef
Id=WixStandardBootstrapperApplication.HyperlinkLicense
  bal:WixStandardBootstrapperApplication LicenseUrl=C:\VS
Publish\Guru\Dependencies\License.txt ThemeFile=guruhyperlinktheme.xml
LogoFile=images\guru.ico LocalizationFile=1033\guruhyperlinktheme.wxl/
  Payload Name=guruhyperlinktheme.wxl
SourceFile=1033\guruhyperlinktheme.wxl /
  Payload Name=guru.ico SourceFile=images\guru.ico/
/BootstrapperApplicationRef

Variable Name=InstallClient Type=numeric bal:Overridable=yes
Value=1 /
Variable Name=InstallServer Type=numeric bal:Overridable=yes
Value=0 /

Chain
  ExePackage Cache=no
  InstallCondition=InstallServer = 1
  Description=SQL Server and Guru Server Bundle
  Id=GuruServer
  SourceFile=\\SERVER\RedirectedFolders\gary.monk\My
Documents\Visual Studio 2013\Projects\Guru Install
Solution\GuruSQLBundle\bin\Debug\GuruSQLBundle.exe
  /ExePackage

  MsiPackage Cache=no
  Description=Guru Client
  Id=GuruClient
  DisplayInternalUI=yes
  SourceFile=\\SERVER\RedirectedFolders\gary.monk\My
Documents\Visual Studio 2013\Projects\Guru Install
Solution\GuruClientInstall\bin\Debug\GuruClientInstall.msi /
/Chain
/Bundle

Thanks,
Gary



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unable-to-select-radio-buttons-in-Hyperlink-Theme-tp7598537p7598548.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread Phill Hogland
I use a mba, and have not tried what you are doing for some time so I don't
want to confuse the discussion in this thread. but I would use the approach
detailed  here
https://wixextba.codeplex.com/SourceControl/latest#Examples/Bundle10.wxs  
which is supported in 3.8 and later by creating a BAFunction.dll.

When I search the wix source code and compare your use of  Button
Name=ClientInstall .../ to the license accept checkbox  I don't know
where you have code like the following implemented:
void OnClickAcceptCheckbox()
{
BOOL fAcceptedLicense = ThemeIsControlChecked(m_pTheme,
WIXSTDBA_CONTROL_EULA_ACCEPT_CHECKBOX);
ThemeControlEnable(m_pTheme, WIXSTDBA_CONTROL_INSTALL_BUTTON,
fAcceptedLicense);
}

But again I have not tried what you are doing without also using a
BAFunctions.dll, so maybe I am missing something.



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unable-to-select-radio-buttons-in-Hyperlink-Theme-tp7598537p7598550.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread garymonk
I don't have anything like that coded. I'm new to WIX and I wasn't aware that
I needed to do any coding. That's not a problem if someone could explain to
me, or point me to some documentation, on how to do it.

Thanks,
Gary



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unable-to-select-radio-buttons-in-Hyperlink-Theme-tp7598537p7598559.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme [P]

2014-12-12 Thread Steven Ogilvie
Classification: Public
Okay I have it working:

Button Name=INSTALLCLIENT X=170 Y=130 Width=-11 Height=17 
TabStop=yes FontId=3 HideWhenDisabled=no HexStyle=0x09Guru Teach 
Client Only/Button
Button Name=INSTALLSERVER X=170 Y=155 Width=-11 Height=17 
TabStop=yes FontId=3 HideWhenDisabled=no HexStyle=0x09Guru Teach 
Client and Server/Button

Variable Name=INSTALLCLIENT Type=numeric bal:Overridable=yes Value=1 /
Variable Name=INSTALLSERVER Type=numeric bal:Overridable=yes 
Value=0 /

I think you had the names in the bundle as InstallServer and ServerInstall in 
the theme you had the names different

STeve

-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
Sent: December-12-14 11:29 AM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme [P]

Classification: Public
Gary 

You set them to 0 which makes them unselected, change one or both values to 1

Also, you need to use overridable in your variable name in the bundle.wxs i.e.:

Variable Name=InstallClient Type=numeric bal:Overridable=yes Value=1 
/ Variable Name=InstallServer Type=numeric bal:Overridable=yes 
Value=0 /

Cheers,

Steve

-Original Message-
From: garymonk [mailto:g...@gurudental.com]
Sent: December-12-14 11:19 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

I added the following statements to the bundle...

Variable Name=InstallClient Type=numeric Value=0 / Variable 
Name=InstallServer Type=numeric Value=0 /

and modified the button statements as follows...

Button Name=ClientInstall X=160 Y=130 Width=-11 Height=17
TabStop=yes FontId=3 HexStyle=0x09Guru Teach Client Only/Button 
Button Name=ServerInstall X=160 Y=155 Width=-11 Height=17
TabStop=yes FontId=3 HexStyle=0x09Guru Teach Client and 
Server/Button

and the buttons are disabled when the dialog is displayed.

How do I make the buttons enabled?

Thanks,
Gary 



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unable-to-select-radio-buttons-in-Hyperlink-Theme-tp7598537p7598543.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! 
Instantly Supercharge Your Business Reports and Dashboards with Interactivity, 
Sharing, Native Excel Exports, App Integration  more Get technology previously 
reserved for billion-dollar corporations, FREE 
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

 
This message has been marked as Public by Steven Ogilvie on December-12-14 
11:28:32 AM.

The above classification labels were added to the message by TITUS Message 
Classification. For more information visit www.titus.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! 
Instantly Supercharge Your Business Reports and Dashboards with Interactivity, 
Sharing, Native Excel Exports, App Integration  more Get technology previously 
reserved for billion-dollar corporations, FREE 
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

 
This message has been marked as Public by Steven Ogilvie on December-12-14 
1:21:04 PM.

The above classification labels were added to the message by TITUS Message 
Classification. 
For more information visit www.titus.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread Hoover, Jacob
Have you tried BS_AUTORADIOBUTTON instead of BS_RADIOBUTTON for your HexStyle?

#define BS_RADIOBUTTON  0x0004L
#define BS_AUTORADIOBUTTON  0x0009L



-Original Message-
From: garymonk [mailto:g...@gurudental.com] 
Sent: Friday, December 12, 2014 11:57 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

I don't have anything like that coded. I'm new to WIX and I wasn't aware that I 
needed to do any coding. That's not a problem if someone could explain to me, 
or point me to some documentation, on how to do it.

Thanks,
Gary



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unable-to-select-radio-buttons-in-Hyperlink-Theme-tp7598537p7598559.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! 
Instantly Supercharge Your Business Reports and Dashboards with Interactivity, 
Sharing, Native Excel Exports, App Integration  more Get technology previously 
reserved for billion-dollar corporations, FREE 
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread Phill Hogland
This  thread
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-suppress-the-StdBA-Bootstrapper-UI-td7597705.html#a7597753
  
has info setting up bafunctions.dll for a slightly different purpose.  And
this  link
https://wixextba.codeplex.com/SourceControl/latest#Examples/Bundle4.wxs  
provides an example of implementing check boxs.

The related  bafunctions code
https://wixextba.codeplex.com/SourceControl/latest#bafunctions/WixBootstrapperBAFunction.cpp
  
is for the similar example posted in an earlier post in this thread is for
radiobuttons, but the idea for checkboxs is similar.



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unable-to-select-radio-buttons-in-Hyperlink-Theme-tp7598537p7598562.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme [P]

2014-12-12 Thread garymonk
Thank you Steve, and everyone else that contributed.

I had the names backwards. I must have looked at that a thousand times. 

Thanks again!!



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Re-Unable-to-select-radio-buttons-in-Hyperlink-Theme-P-tp7598544p7598563.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-11 Thread garymonk
I have modified the Hyperlink theme install page to include two radio
buttons.

Page Name=Install
  Text X=160 Y=100 Width=-11 Height=17 FontId=3Select
software to install/Text
  Button Name=ClientInstall X=160 Y=130 Width=-11 Height=17
TabStop=yes FontId=3 HexStyle=0x04Guru Teach Client Only/Button
  Button Name=ServerInstall X=160 Y=155 Width=-11 Height=17
TabStop=yes FontId=3 HexStyle=0x04Guru Teach Client and
Server/Button
  Text X=110 Y=200 Width=300 Height=30 FontId=3
DisablePrefix=yes#(loc.OptionsDescription)/Text
  Hypertext Name=EulaHyperlink X=11 Y=-61 Width=-11 Height=51
TabStop=yes FontId=3
HideWhenDisabled=yes#(loc.InstallLicenseLinkText)/Hypertext
Checkbox Name=EulaAcceptCheckbox X=-11 Y=-41 Width=260
Height=17 TabStop=yes FontId=3
HideWhenDisabled=yes#(loc.InstallAcceptCheckbox)/Checkbox
  Text X=11 Y=-11 Width=260 Height=17
FontId=3#(loc.InstallVersion)/Text

Button Name=InstallButton X=-91 Y=-11 Width=75 Height=23
TabStop=yes FontId=0#(loc.InstallInstallButton)/Button
Button Name=WelcomeCancelButton X=-11 Y=-11 Width=75
Height=23 TabStop=yes FontId=0#(loc.InstallCloseButton)/Button
/Page

The problem is you cannot select either radio button. I've played around
with the HexStyle values but they're either grayed out (9) or unusable (4).

http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/file/n7598537/hyperlink.png
 

How do I make the buttons usable and set a variable(s) to either 0 or 1
based on whether the button is selected?

Thanks,
Gary 



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unable-to-select-radio-buttons-in-Hyperlink-Theme-tp7598537.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-11 Thread Sean Hall
It appears that you must declare the radio button Variables in your bundle,
and set their values to 0.  Then use the BS_AUTORADIOBUTTON HexStyle (9).

On Thu, Dec 11, 2014 at 5:44 PM, garymonk g...@gurudental.com wrote:

 I have modified the Hyperlink theme install page to include two radio
 buttons.

 Page Name=Install
   Text X=160 Y=100 Width=-11 Height=17 FontId=3Select
 software to install/Text
   Button Name=ClientInstall X=160 Y=130 Width=-11 Height=17
 TabStop=yes FontId=3 HexStyle=0x04Guru Teach Client
 Only/Button
   Button Name=ServerInstall X=160 Y=155 Width=-11 Height=17
 TabStop=yes FontId=3 HexStyle=0x04Guru Teach Client and
 Server/Button
   Text X=110 Y=200 Width=300 Height=30 FontId=3
 DisablePrefix=yes#(loc.OptionsDescription)/Text
   Hypertext Name=EulaHyperlink X=11 Y=-61 Width=-11
 Height=51
 TabStop=yes FontId=3
 HideWhenDisabled=yes#(loc.InstallLicenseLinkText)/Hypertext
 Checkbox Name=EulaAcceptCheckbox X=-11 Y=-41 Width=260
 Height=17 TabStop=yes FontId=3
 HideWhenDisabled=yes#(loc.InstallAcceptCheckbox)/Checkbox
   Text X=11 Y=-11 Width=260 Height=17
 FontId=3#(loc.InstallVersion)/Text

 Button Name=InstallButton X=-91 Y=-11 Width=75 Height=23
 TabStop=yes FontId=0#(loc.InstallInstallButton)/Button
 Button Name=WelcomeCancelButton X=-11 Y=-11 Width=75
 Height=23 TabStop=yes FontId=0#(loc.InstallCloseButton)/Button
 /Page

 The problem is you cannot select either radio button. I've played around
 with the HexStyle values but they're either grayed out (9) or unusable (4).

 
 http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/file/n7598537/hyperlink.png
 

 How do I make the buttons usable and set a variable(s) to either 0 or 1
 based on whether the button is selected?

 Thanks,
 Gary



 --
 View this message in context:
 http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unable-to-select-radio-buttons-in-Hyperlink-Theme-tp7598537.html
 Sent from the wix-users mailing list archive at Nabble.com.


 --
 Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
 from Actuate! Instantly Supercharge Your Business Reports and Dashboards
 with Interactivity, Sharing, Native Excel Exports, App Integration  more
 Get technology previously reserved for billion-dollar corporations, FREE

 http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users