Re: Tkinter scrollbar and checkbox

2008-04-25 Thread goldtech
snip... I use wxPython most of the time, however effbot has a good tutorial on scrollbars for Tkinter that I think you might find helpful: http://effbot.org/zone/tkinter-scrollbar-patterns.htm Here's another link on the subject:

Tkinter scrollbar and checkbox

2008-04-24 Thread goldtech
Hi, I'm stumped on how to have a scrollbar with a long list of checkboxes. Given code like: from Tkinter import * root = Tk() states = [] for i in range(150): var = IntVar() chk = Checkbutton(root, text=str(i), variable=var) chk.grid(sticky=W) states.append(var) root.mainloop()

Re: Tkinter scrollbar and checkbox

2008-04-24 Thread Mike Driscoll
On Apr 24, 7:11 am, goldtech [EMAIL PROTECTED] wrote: Hi, I'm stumped on how to have a scrollbar with a long list of checkboxes. Given code like: from Tkinter import * root = Tk() states = [] for i in range(150):     var = IntVar()     chk = Checkbutton(root, text=str(i), variable=var)