The last time I posted a question here, I got a rather nasty response, so please just constructive stuff!
I want to make a scrollable entrybox for Tkinter GUI, the scrollbar shows up and works, but text does not move. Am I missing something?
import Tkinter as tk
root = tk.Tk()
enter1 = tk.Entry(root, bg='yellow', width=30)
enter1.grid(row=0, column=0)
# create a horizontal scrollbar at bottom of enter1
# (similar to code shown for a listbox)
xscroll = tk.Scrollbar(orient='horizontal', command=enter1.xview)
xscroll.grid(row=1, column=0, sticky='ew')
enter1.configure(xscrollcommand=xscroll.set)
enter1.insert('end', 'just a very long sentence to put into the enter space')
root.mainloop()