Hello, Rob.

You wrote Thursday, March 15, 2007, 2:05:33 PM:

> Are you creating your own *and* linking in the WiX provided ones?
This is part of my code:
UIFragment.wxs
<?xml version='1.0' encoding='utf-8'?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";>
  <Fragment>
                <UI Id="MyUI">
                        <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" 
Size="8" />
                        <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" 
Size="12" />
                        <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" 
Size="9" Bold="yes" />
                        <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" 
/>
                        <Property Id="WixUI_Mode" Value="InstallDir" />
                        <Property Id="ARPNOMODIFY" Value="1" />
                        <Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
                        <Property Id="LicenseAccepted" Value="No" />
                        ....
                        <Dialog Id="BrowseDlg" Width="370" Height="270" 
Title="!(loc.BrowseDlg_Title)">
                        ...
                        </Dialog>
                        ...
                </UI>
  </Fragment>
  </Wix>
common.wxs
...
<Product ...>
  ...
    <UIRef Id="MyUI" />
  ...
</Product>

this is my link command:
"c:\Program Files\Windows Installer XML v3\bin\light.exe" -out
"./_msi/product.msi" common.wixobj UIFragment.wixobj -ext WixUIExtension -ext 
WixUtilExtension -loc "./je/wixui_ja-jp.wxl" -loc "./je/ui_ja-jp.wxl" 
-cultures:ja-jp

> Rob

> Lexa Rogovoy wrote:
>> Hello, Rob.
>> 
>> You wrote Thursday, March 15, 2007, 1:35:58 PM:
>> 
>>> [EMAIL PROTECTED] and [EMAIL PROTECTED]  You'll probably want to adjust 
>>> [EMAIL PROTECTED] and [EMAIL PROTECTED] too.
>> How can i do this in all standard dialogs?
>> When i am add BrowseDlg, DiskCostDlg and other standard dialogs, i am get
>> errors like:
>> Z:\Releases\122\common\UIFragment.wxs(145) : error LGHT0091 : Duplicate 
>> symbol 'Dialog:BrowseDlg' found.
>> ...
>> 
>> 
>>> Lexa Rogovoy wrote:
>>>> Hello,
>>>>
>>>> I need change Back/Next/Cancel buttons size in all dialogs. How can i do 
>>>> this?
>>>>
>>>> --
>>>>   Lexa
>>>>


--
  Lexa


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to