Re: I can't get value of entry box, Tinker
Matt McCredie wrote: > > What/should I, can I do? > > Fix your code? > > > def login(): > > global e2,e1 > > print e2.get() > > print e1.get() > > That should work. > > Matt Try something like this: import Tkinter as tk root = tk.Tk() entry = tk.Entry(root) button = tk.Button(root, t
Re: I can't get value of entry box, Tinker
> What/should I, can I do? Fix your code? > def login(): > global e2,e1 > print e2.get() > print e1.get() That should work. Matt -- http://mail.python.org/mailman/listinfo/python-list