Re: [Tkinter-discuss] Cascade menu issue

2006-08-22 Thread Jeff Epler
The "activate_cascade" code seems to accomplish what you want. I tested it only on Ubuntu 5.10, so your mileage may vary with different Linux distributions and Tk versions. Jeff # -- import Tkinter app = Tkinter.Tk() menubar =

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