Re: [Tutor] Question about Frames and Scrollbars

2005-04-13 Thread Alberto Troiano
The second option will do the trick. I use Pmw.Combobox but I didn't know there was a ScrolledFrame Thanks a lot Regards Alberto GauchoFrom: [EMAIL PROTECTED] To: "tutor@python.org" tutor@python.org Subject: Re: [Tutor] Question about Frames and Scrollbars Date: Wed, 13 Apr 2005 10:1

[Tutor] Question about Frames and Scrollbars

2005-04-12 Thread Alberto Troiano
Hi everyone I don't know if anyone posted something similar but I'll shoot. Is there anyway to Scroll over a Frame?? Let me put this under water. I made a 2D blueprint inside a frame. I'm creating labels dynamically depending on how many rows and columns I want. Suppose you have an 8x8 matriz of

Re: [Tutor] Question about Frames and Scrollbars

2005-04-12 Thread jfouhy
A couple of options... You can pack a scrollbar on the right hand side of the containing frame and use the yscrollcommand option to associate it with the frame --- see Fredrik Lundh's Tkinter pages for an example. Or you could grab Python MegaWidgets from http://pmw.sourceforge.com/ and use a