I'm a bit new to tkinter but really enjoy using it. I have a little problem with the scrollbar:
I'm using python 3.6 8 on ubuntu 18.04. I am trying to develop a software for a school's management.
In one of the toplevel using grid geometry I have many rows with 5 columns including 3 labels, 1combobox and 1 button. All the same for 35 rows. I tried the scrollbar but its just giving me small bar staying above widgets.
import tkinter
frame1 = tkinter.Frame(root).grid(row=0, column=0)
bar = tkinter.Scrollbar(frame1).grid(column=6, row=0, sticky=ns)
canvas = tkinter.Canvas(frame1, scrollregion=(0, 0, 1000, 1000), yscrollcommand=bar.set).grid(row=0, column=0)
frame = tkinter.Frame(canvas).grid(column=0, row=0)
# I placed the widgets in the frame here
canvas.config(scrollregion=canvas.bbox(All))
window.mainloop()
Please help