i've saved with unicode and removed the width="0" and the window apears without controls
code:
<?xml version="1.0" encoding="UTF-16"?>
<Interfaces xmlns="urn:msgplus:interface" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsichemaLocation="urn:msgplus:interface PlusInterface.xsd" Name="Demo Script Windows">
<Window Id="windowZero" Version="1">
<Position Width="114" Height="128" />
<Attributes>
<Caption>Test Window</Caption>
</Attributes>
<TitleBar>
<Title><Text>Hello!</Text></Title>
</TitleBar>
<Controls>
<Control xsi:type="ListBoxControl" Id="list">
<Position Top="37" Left="26" />
</Control>
<Control xsi:type="ButtonControl" Id="btnAdd">
<Position Top="37" Left="26" />
<Caption>Adicionar</Caption>
</Control>
<Control xsi:type="ButtonControl" Id="btnRem">
<Position Top="80" Left="190" />
<Caption>Remover</Caption>
</Control>
<Control xsi:type="StaticControl" Id="static1">
<Position Top="37" Left="26" />
<Caption>Made by zeroonnet</Caption>
</Control>
</Controls>
</Window>
</Interfaces>
What's wrong?