I am coding a application with Python and Tkinger.
After some work, I ran into a problem: In my Tkinter application I have some entry widget and the user put number in it.
I was wondering if it would be possible for me to restrick the entered value to int, float, long.
This would prevent a lot of error...
I am using Windows 7, Python 2.7, Tkinter + Python Mega Widget Thank you in advance!
----------EDIT:
Here is a code sample that might help someone. The user can only imput a number: - This can be float, int, long. - The user can only put 1 dot, a number doesn't have 2 dot anyway
import Tkinter as tk
class MyApp():
def __init__(self):
self.root = tk.Tk()
vcmd = (self.root.register(self.OnValidate),
'%d', '%i', '%s', '%S')
self.entry = tk.Entry(self.root, validate="key",
validatecommand=vcmd)
self.entry.pack()
self.root.mainloop()
def OnValidate(self, d, i, s, S,):
if S == "-" and s.count('-') != 1 and int(i) == 0:
return True
if d == "0":
return True
try:
return int(S) >= 0 and int(S) <= 9
except:
if S == "." and s.count('.') != 1:
return True
return False
app=MyApp()