Matthew Dixon Cowles wrote: >>> from Tkinter import * >>> r=Tk() >>> f=Frame(r,width=200,height=100) >>> f.pack_propagate(0) >>> f.pack() >>> e=Entry(f) >>> e.pack(fill=BOTH,expand=1) which did exactly what I wanted. Thank you very much. Laura Creighton