Re: [Tutor] A Simple Tkinter Control Program--Slight Problem

2009-03-05 Thread Wayne Watson
Title: Signature.html master!   Good. Thanks.   master.mainloop() Alan Gauld wrote: "Wayne Watson" wrote Here's what I think the author meant in discussing a control variable sample program. from Tkinter import * v=StringVar() e = Entry(ma

Re: [Tutor] A Simple Tkinter Control Program--Slight Problem

2009-03-05 Thread Alan Gauld
"Wayne Watson" wrote Here's what I think the author meant in discussing a control variable sample program. from Tkinter import * v=StringVar() e = Entry(master, textvariable=v) AG >> No master defined... you need AG >> mas

[Tutor] A Simple Tkinter Control Program--Slight Problem

2009-03-05 Thread Wayne Watson
Here's what I think the author meant in discussing a control variable sample program. from Tkinter import * v=StringVar() e = Entry(master, textvariable=v) e.pack() e.focus_set() v.set("a default value") s = v.get() mainloop()