Most other dialogs in src\ext\UIExtension\wixlib\*.wxs have:
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.LicenseAgreementDlgBannerBitmap)" /> <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" /> However, AdvancedWelcomeEulaDlg.wxs has: <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.AdvancedWelcomeEulaDlgBannerBitmap)" /> <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" /> i.e., it is missing BannerLine. This looks strange to me in the UI, because all other dialogs have the BannerLine. Is this an oversight, or by design? (Note that WelcomeEulaDlg also appears to be missing BannerLine.) If it's by design, is there an easy way to add it back, short of recompiling UIExtension or incorporating all of UIExtension into my Wix file? I tried to add, in my Wix file: <UI> <Dialog Id="AdvancedWelcomeEulaDlg"> <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" /> </Dialog></UI> However, that does not work--candle complains that there are not tabbable elements. If I put the entire AdvancedWelcomeEulaDlg in, it continues, but then light complains about the duplicate dialog in AdvancedWelcomeEulaDlg (LGHT0091) because I am including <UIRef Id="WixUI_Advanced" />. Thanks! Sean ------------------------------------------------------------------------------ RSA(R) Conference 2012 Save $700 by Nov 18 Register now http://p.sf.net/sfu/rsa-sfdev2dev1 _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users