VK wrote:
> Hi!
> Can entry widget be scrolled?
> VK
>
> TypeError: xview() takes exactly 2 arguments (4 given)
>
> Code:
>
>
>
> from Tkinter import *
> class ScrollEntry:
> def __init__(self):
> self.root = Tk()
> self.scrollbar = Scrollbar(self.root,orient=HO
Hi!
Can entry widget be scrolled?
VK
TypeError: xview() takes exactly 2 arguments (4 given)
Code:
from Tkinter import *
class ScrollEntry:
def __init__(self):
self.root = Tk()
self.scrollbar = Scrollbar(self.root,orient=HORIZONTAL,)
self.entry =