I've either found a bug or a misunderstanding on my part.&nbsp; I'd appreciate confirmation or either.&nbsp; :-)<br><br>Running this bit of code the layout of the form appears as expected:<br><br>import clr<br>clr.AddReference('System.Windows.Forms
')<br>import System.Windows.Forms as SWF<br><br>form = SWF.Form()<br>menu_strip = SWF.MenuStrip()<br>button = SWF.Button()<br>button.Dock = SWF.DockStyle.Fill<br>form.Controls.Add(button)<br>form.Controls.Add(menu_strip)<br>
SWF.Application.Run(form)<br><br><br>Whereas in the following example the button is cut off by the menu:<br><br>import clr<br>clr.AddReference('System.Windows.Forms')<br>import System.Windows.Forms as SWF<br><br>form = SWF.Form
()<br>menu_strip = SWF.MenuStrip()<br>button = SWF.Button()<br>button.Dock = SWF.DockStyle.Fill<br>form.Controls.Add(menu_strip)<br>form.Controls.Add(button)<br>SWF.Application.Run(form)<br><br clear="all"><br>The only difference between the two bits of code is the order of the calls to '
form.Controls.Add()'.&nbsp; Is this expected, or is this a bug?<br><br>-- <br>Patrick K. O'Brien<br>Orbtech&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://www.orbtech.com">http://www.orbtech.com</a><br>Schevo&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://www.schevo.org">http://www.schevo.org
</a><br>Louie&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://www.pylouie.org">http://www.pylouie.org</a>