0

I have a label and an entry box in my app What I want is the scrollbar not being linked to a listbox since I don't want to create any

mylabel = Label(win, text=text1)
mylabel.pack()

mytext = Entry(win, width=50)
mytext.pack()

sbar=Scrollbar(win)
sbar.pack(side=RIGHT, fill=Y)
Bussller
  • 1,961
  • 6
  • 36
  • 50
Thalis
  • 188
  • 2
  • 12
  • And what exactly is the problem with the code you have posted? By the way, you can format your code as 'code' by selecting it and pressing Ctrl-k. – Ronald Jul 13 '20 at 13:55
  • The scrollbar is not working in this code – Thalis Jul 13 '20 at 16:20

0 Answers0