Hi,

Is it possible to display an hyperlink in the dialog? I have some Text being 
displayed in the dialog box (one sample .wxs file shown below). In addition, I 
want to have some hyperlink also displayed. Can someone please suggest how do I 
go about doing that?

Thanks,
~ Tapas


<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";>
    <Fragment>
        <UI>
            <Dialog Id="ReadyInstallDlg" Width="370" Height="270" 
Title="!(loc.VerifyReadyDlg_Title)" TrackDiskSpace="yes">
                 ...

                <Control Id="FeaturesText" Type="Text" X="25" Y="100" 
Width="320" Height="80" Hidden="yes" Text="[FEATURESINSTALLED]">
                    <Condition Action="show">NOT Installed</Condition>
                </Control>

                <Control Id="Back" Type="PushButton" X="156" Y="243" Width="56" 
Height="17" Text="!(loc.WixUIBack)">
                    <Condition Action="default">WixUI_InstallMode = 
"Remove"</Condition>
                </Control>
                <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="BannerBitmap" Type="Bitmap" X="0" Y="0" 
Width="370" Height="44" TabSkip="no" Text="!(loc.VerifyReadyDlgBannerBitmap)" />
                <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" />
            </Dialog>
        </UI>
    </Fragment>
</Wix>


------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://ad.doubleclick.net/clk;258768047;13503038;j?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to