tags:

views:

17

answers:

1

there is a way to draw horizontal line < control type="Line"... Width="370" Height="2" />. however it doesn't allow me to draw a vertical line with < control type="Line"... Width="2" Height="100" />. why???

A: 

This is a limitation of the Windows Installer. The Line control can only describe be a horizontal line. The Height attribute is ignored. This is probably also a WiX defect in that the compiler should give an error when trying to provide a Height Attribute when the Type is Line.

Line Control (Windows Installer -MSDN )

Christopher Painter
well, newer wix should fix this issue :/
lannyboy