Hi, I am going wrong somewhere in the following code. here is given a simplified code of the work that I am trying to do. The scrollbar goes not work in the window. Can someone please let me know what the issue is. Thank you
Code: from Tkinter import * root = Tk() root.geometry("500x400") scrollbar = Scrollbar(root, orient = "vertical") scrollbar.grid(column = 5,sticky = W) for i in range(0,20): Label(root, text = i).grid(row = 1+i, column = 1, sticky = W) root.mainloop() _______________________________________________ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor