0
Scrollbar in tkinter by python
Good morning, I have created graphic interface by tkinter, how could I add scrollbar
2 Answers
0
from tkinter import scrolledtext
# make your main window.
...
scrolled_text = scrolledtext.ScrolledText(master, width, height)
# place your scrolled text box wherever
0
Error:"module" object is not callable