I have a couple of questions
1) I am trying to get an Entry
widget to be restricted to numeric input only. I have seen some samples on stack overflow but they tend to use the class based Tkinter coding and I am doing it usual style.
E=Entry(t3, bg='gray', textvariable=weekly_savings[num], validate='focus', validatecommand=MoneyValidation))
I am not sure how to implement this money validation. The window code is as follows
t3=Toplevel(root)
bg='gold'
t3.title(u"\u092c\u0939\u0940 \u0916\u0924\u093e")
t3.geometry('800x450+100+50')
t3.transient(root)
t3.configure(background=bg)
t3.overrideredirect(True)
Secondly I am working with a semi-literate population for my final use case and we would like to use only the accountants keyboard. I would like to bind the focus shifting to a num lock key. How do I do that?