Re: [Tkinter-discuss] Finding variable associated with checkbutton
On Wed, Jul 8, 2009 at 6:05 PM, Cameron Laird wrote: > On Wed, Jul 08, 2009 at 01:37:52PM -0700, VladPotrosky wrote: > . > . > . >> How do you find the variable which a checkbutton is linked to? >> example: >> >> >> v = IntVar() >
Re: [Tkinter-discuss] Finding variable associated with checkbutton
On Wed, Jul 08, 2009 at 01:37:52PM -0700, VladPotrosky wrote: . . . > How do you find the variable which a checkbutton is linked to? > example: > > > v = IntVar() > c = Checkbutton(master, text='Foo', variable=v) > > how do