I've noticed that in the RtfTheme-Custom.xml, there is this which I'm guessing 
represents the "Setup Successful" page:

<Page Name="Success">
        <Text X="11" Y="80" Width="-11" Height="30" FontId="2" 
DisablePrefix="yes">#(loc.SuccessHeader)</Text>
        <Button Name="LaunchButton" X="-91" Y="-11" Width="75" Height="23" 
TabStop="yes" FontId="0" 
HideWhenDisabled="yes">#(loc.SuccessLaunchButton)</Button>
        <Text Name="SuccessRestartText" X="-11" Y="-51" Width="400" Height="34" 
FontId="3" HideWhenDisabled="yes" 
DisablePrefix="yes">#(loc.SuccessRestartText)</Text>
        <Button Name="SuccessRestartButton" X="-91" Y="-11" Width="75" 
Height="23" TabStop="yes" FontId="0" 
HideWhenDisabled="yes">#(loc.SuccessRestartButton)</Button>
        <Button Name="SuccessCancelButton" X="-11" Y="-11" Width="75" 
Height="23" TabStop="yes" FontId="0">#(loc.SuccessCloseButton)</Button>
    </Page>

So I could theoretically add a <Text> element, but I'm not sure how I would set 
the text of that field. Furthermore, I may only want the text to show in 
specific cases (i.e. successful install) and not in others (i.e. install 
failure, modification, or repair).

Any ideas?

Alain

-----Original Message-----
From: Alain Forget [mailto:afor...@cmu.edu] 
Sent: Tuesday, August 27, 2013 08:13
To: 'General discussion for Windows Installer XML toolset.'
Subject: RE: [WiX-users] Add text to final window in burn bootstrapper/installer

Good question. I'm not sure exactly, but here’s some code snippets that what 
I'm guessing are UI-related:

<Wix 
        xmlns='http://schemas.microsoft.com/wix/2006/wi'
        xmlns:bal="http://schemas.microsoft.com/wix/BalExtension";
        xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";
>
...
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense" >
        <bal:WixStandardBootstrapperApplication
                LicenseFile="License.rtf"
                LogoFile="lib\Logo_64x64.png"
                SuppressOptionsUI="yes"
                ThemeFile="RtfTheme-Custom.xml"
        />
</BootstrapperApplicationRef>

Obviously, we are using a custom theme (RtfTheme-Custom.xml), but it's almost 
identical to the original src\ext\BalExtension\wixstdba\Resources\RtfTheme.xml 
. 


-----Original Message-----
From: Blair Murri [mailto:os...@live.com] 
Sent: Tuesday, August 27, 2013 05:51
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Add text to final window in burn bootstrapper/installer

Which UI are you using in your bundle?

> From: afor...@cmu.edu
> To: wix-users@lists.sourceforge.net
> Date: Mon, 26 Aug 2013 18:55:39 -0400
> Subject: [WiX-users] Add text to final window in burn bootstrapper/installer
> 
> Hi all,
> 
> Our installer bundled with burn currently posts a simple "Setup Complete" 
> message when the install is done. How can we add additional text on this last 
> window when the install is complete?
> 
> Thanks,
> Alain
> 
> 
> ------------------------------------------------------------------------------
> Introducing Performance Central, a new site from SourceForge and 
> AppDynamics. Performance Central is your source for news, insights, 
> analysis and resources for efficient Application Performance Management. 
> Visit us today!
> http://pubads.g.doubleclick.net/gampad/clk?id=48897511&iu=/4140/ostg.clktrk
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
                                          
------------------------------------------------------------------------------
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to