Thank you very much Robin,
calling frm.Layout() after frm.Show() fixes the Maximize problem in the sample application; after some trials I found the solution of the same problem in my aui app too - here frm._mgr.Update() must be called after Show().
Thanks again,
Vlasta
···
2008/4/8, Robin Dunn robin@alldunn.com:
If Maximize() is called before Show(1), the window gets allmost maximized, however, there remains some space …
Vlastimil Brom wrote:I expect that it is simply something like a lack of a size event at the maximized size, so the layout isn’t resizing the child widget to the final size. Try adding a call to frm.Layout(). …