okno3 = Frame(root,width=510,height=200,bg="blue") Label(okno3, text="РЕЗУЛЬТАТЫ ПОИСКА", bd=3).pack(side="top", fill="x") T = tktable.Table(okno3, rows=5, cols=8, bg="grey", bd=2) S = Scrollbar(okno3, command=T.yview) T.configure(yscrollcomman=S.set) T.grid(row=0, column=0) S.grid(row=0, column=1)
p.s.: при использовании .pack() или .place() все работает но немного не то.