Re: Tkinter Scrollbar bad behavior [re. bug #10232]

2010-10-30 Thread rantingrick
Robert, First and foremost if you wish to scroll a window then why not use the TIX.ScrolledWindow widget instead. It even shows and hides the scrollbar when necessary. #-- Start Script --# from Tix import * #from Tkconstants import * class App(Tk): # Must use Tk for Tix incompability def __

Tkinter Scrollbar bad behavior [re. bug #10232]

2010-10-30 Thread Robert A. Lerche
I am trying to use Tkinter to create a custom scrollable widget, similar to a list box but with 3 Entry fields per row. In the real application each Entry has a separate input validation routine. I have placed a test case file in the bug I reported: http://bugs.python.org/issue10232 The most ser