Hello all,

I have following snippet in Bundle.wxs

========================
    <BootstrapperApplicationRef
Id="WixStandardBootstrapperApplication.Foundation" />
    <WixVariable Id="WixStdbaThemeXml" Value="ht.xml" />
    <WixVariable Id="WixStdbaThemeWxl" Value="ht.wxl" />
========================

When I build and run my exe, it does NOT  give the UI and installation
doesn't work.

ht.xml 
========================
<Theme xmlns="http://wixtoolset.org/schemas/thmutil/2010";>
    <Window Width="500" Height="390" HexStyle="100a0000"
FontId="0">#(loc.Caption)</Window>

    <Page Name="Install">
        <Text X="11" Y="80" Width="-11" Height="30"
FontId="2">#(loc.InstallHeader)</Text>
        <Text X="11" Y="121" Width="-11" Height="-129"
FontId="3">#(loc.InstallMessage)</Text>
        <Hypertext Name="EulaHyperlink" X="11" Y="-107" Width="-11"
Height="17" TabStop="yes" FontId="3"
HideWhenDisabled="yes">#(loc.InstallLicenseLinkText)</Hypertext>
        <Text X="11" Y="-73" Width="246" Height="17"
FontId="3">#(loc.InstallVersion)</Text>
        <Checkbox Name="EulaAcceptCheckbox" X="-11" Y="-41" Width="246"
Height="17" TabStop="yes" FontId="3"
HideWhenDisabled="yes">#(loc.InstallAcceptCheckbox)</Checkbox>
        <Button Name="OptionsButton" X="-171" Y="-11" Width="75" Height="23"
TabStop="yes" FontId="0"
HideWhenDisabled="yes">#(loc.InstallOptionsButton)</Button>
        <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>
</Theme>
======================

ht .wxl 
======================
  <String Id="InstallHeader">Welcome</String>
  <String Id="InstallMessage">Setup will install [WixBundleName] on your
computer. Click install to continue, options to set the install directory or
Close to exit.</String>
  <String Id="InstallVersion">Version [WixBundleVersion]</String>
======================

What am I doing wrong ?




--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-UI-simple-example-doubt-tp7580492.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to