On Sep 12, 6:22 pm, Simon Forman <[EMAIL PROTECTED]> wrote:
> Hi all,
>
>Snip> Any thoughts or advice?
>
> Thanks in advance,
> ~Simon
>

This seems to do what you want, the difference is that the expand
option is left out top and bottom, also I increased height and put in
a width value as well:
from Tkinter import *

t = Tk()

header = Frame(t, bg="black", height=30, width = 10)
header.pack(fill=X, side=TOP, anchor=N)

body = Frame(t, bg="grey")
body.pack(expand=1, fill=BOTH, anchor=CENTER)

log = Frame(t, bg="white", height=30, width = 10)
log.pack( fill=X, side=BOTTOM, anchor=S)

t.mainloop()

Ciao
Tony

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to