Building with WiX v3 against the following causes an ICE31 error (which is
warning LGHT1076 : ICE31: Text Style tag in xxx.yyy has no effect. Do you
really want it to appear as text?)

 

        <Control Id="blah" Type="Edit" X="1" Y="1" Width="20" Height="16"
Property="MyProp" Text="{48}{\TS_MS_Sans_Serif_9}" TabSkip="no" Sunken="yes"
/>

 

This can be worked around by swapping the style and the text length
delimiter around. The MSI still works as expected but the warning goes away.

 

        <Control Id="blah" Type="Edit" X="1" Y="1" Width="20" Height="16"
Property="MyProp" Text="{\TS_MS_Sans_Serif_9}{48}" TabSkip="no" Sunken="yes"
/>

 

I may be stating the obvious but I thought it worth mentioning (can't use
the search on SF.net as it falls over but Google found nothing on ice31 and
WiX).

 

Should I file this as a bug?

 

Ryan

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to