See the type attribute of the Control element.
Hyperlinks were only introduced in Windows Installer v5 so you may not be
able to use them, depending on which version of Windows Installer you're
targeting.
http://msdn.microsoft.com/en-us/library/windows/desktop/dd407936%28v=vs.85%29
.aspx


-----Original Message-----
From: Tapas Sahoo [mailto:tap...@microsoft.com] 
Sent: 20 September 2012 11:18
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Displaying a hyperlink in the install dialog

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
SDL PLC confidential, all rights reserved.
If you are not the intended recipient of this mail SDL requests and requires 
that you delete it without acting upon or copying any of its contents, and we 
further request that you advise us.
SDL PLC is a public limited company registered in England and Wales.  
Registered number: 02675207.
Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire SL6 7DY, 
UK.


------------------------------------------------------------------------------
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