Re: [Tkinter-discuss] validating an entry

2006-08-22 Thread Michael Lange
On Mon, 21 Aug 2006 23:03:57 -0400 Jeff Cagle <[EMAIL PROTECTED]> wrote: > So it turned out that validating was not too hard, but you had to Google > for the documentation. Your name, Cameron, showed up a couple of times... > > Here's the code: > > # Testing an edit box with validation > > fr

Re: [Tkinter-discuss] validating an entry

2006-08-21 Thread Jeff Cagle
So it turned out that validating was not too hard, but you had to Google for the documentation. Your name, Cameron, showed up a couple of times... Here's the code: # Testing an edit box with validation from Tkinter import * class MyEntry(Entry): def __init__(self, master, maxchars):