Re: textvariable help

2006-01-28 Thread swisscheese
Thanks - actually I have some of those books on the way from amazon. The first couple of days with a new language are always the hardest! -- http://mail.python.org/mailman/listinfo/python-list

Re: textvariable help

2006-01-28 Thread James Stroud
swisscheese wrote: > Thanks for the quick reply. With your reply and another tutorial I get > it now. I needed "self.Rows = ..." in the constructor. I find myself > wasting a lot of time with poor python docs. I have found the standard library documentation amazingly well written: http://www.pyth

Re: textvariable help

2006-01-28 Thread swisscheese
None - it was a false impression I got somehow. -- http://mail.python.org/mailman/listinfo/python-list

Re: textvariable help

2006-01-28 Thread Fredrik Lundh
"swisscheese" wrote: > Thanks for the quick reply. With your reply and another tutorial I get > it now. I needed "self.Rows = ..." in the constructor. I find myself > wasting a lot of time with poor python docs. Whatever time Python is > supposed to save I'm losing so far in looking up things. I s

Re: textvariable help

2006-01-28 Thread swisscheese
Thanks for the quick reply. With your reply and another tutorial I get it now. I needed "self.Rows = ..." in the constructor. I find myself wasting a lot of time with poor python docs. Whatever time Python is supposed to save I'm losing so far in looking up things. I suppose that will change as I g

Re: textvariable help

2006-01-28 Thread Fredrik Lundh
swisscheese wrote: > I must be missing something basic. > Can anyone explain why 'A' does not show on the entry widget? > > import Tkinter > root = Tkinter.Tk() > class Col: > Rows = [0] > def __init__(self): > Frame = Tkinter.Frame(root); > Frame.pack (side='left') >

textvariable help

2006-01-28 Thread swisscheese
I must be missing something basic. Can anyone explain why 'A' does not show on the entry widget? import Tkinter root = Tkinter.Tk() class Col: Rows = [0] def __init__(self): Frame = Tkinter.Frame(root); Frame.pack (side='left') self.Rows[0] = Tkinter.StringVar();