Re: Tkinter: scrollbar in grid-managed frame

2005-11-16 Thread jepler
Tkinter "frame"s don't scroll. Instead, you need to use something like bwidget's "ScrollableFrame" widget. You may want to combine this with bwidget's "ScrolledWindow". Below is an example which uses my "pybwidget" package, available at http://tkinter.unpy.net/bwidget/ #

Tkinter: scrollbar in grid-managed frame

2005-11-15 Thread anx
I've got a grid-managed frame, containing a column of Labels, and a corresponding column of Entry widgets. I'd like to be able to display dozens, or even hundreds of rows, and use a vertical scrollbar to scroll through them in the frame. So far i can get a scrollbar to display, but it won't scroll