I'm trying to get the scrollbar to allow me to scroll over a set of listboxes on a canvas. The scrollbar will appear there correctly, but when I resize the window so that all the listboxes do not fit on the screen, i'm not allowed to scroll to view the rest. I'm at a loss for what I should try - Here's a snipet of code that's almost identical to what I'm doing - can anyone see where I've gone wrong?
for list in list_set: frame = Frame(canvas, width=20); frame.pack(side=LEFT) listbox = Listbox(frame) listbox.pack() listbox.insert(0,list) frame.pack()