On Tue, 21 Dec 2004 14:16:56 +0900
Guillermo Fernandez Castellanos <[EMAIL PROTECTED]> wrote:

Hi Guille,

thats a classic case of geometry manager conflicts.
You dont need to pack the notebook pages explicitely, tix does this
automagically for you and *tix does not use pack()*, so when
you try to pack() the pages with

> hd.pack()
> gf.pack()

tix doesnt know what to do; by the way, instead of writing

> nb.add('hd',label="hard disk",underline=0)
> hd = nb.subwidget('hd')

you can simply do:

hd = nb.add('hd',label="hard disk",underline=0)

I hope this helps

Michael
_______________________________________________
Tutor maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/tutor

Reply via email to