> Michael wrote:
> > Hi,
> > is it possible to maximize the ttk::panel. Original I thought I could
> > use
> > set swidth [winfo screenwidth .]
> > set sheight [winfo screenheight .]
> > wm geometry . ${swidth}x${sheight}
> > but if the windows taskbar is set to alway on top then the botton of
> > panel is hidden by it. In order to get the whole panel to show I need
> > to maximize the panel by clicking on the maximize button of the panel
> > (window).
> > M.
> try "wm state . zoomed" and see if that does what you want.
> --
> Bryan Oakleyhttp://www.tclscripting.com- Hide quoted text -
>
Hi, yes your solution is exactly what I wanted.