Re: [Tkinter-discuss] IntVar() not being attached to Checkbutton

2009-06-10 Thread Adam Kadzban
On Wed, Jun 10, 2009 at 7:16 PM, Guilherme Polo wrote: > On Wed, Jun 10, 2009 at 7:51 PM, Adam Kadzban wrote: > > On Wed, Jun 10, 2009 at 5:42 PM, Adam Kadzban wrote: > >> > >> > >> On Wed, Jun 10, 2009 at 5:08 PM, John McMonagle > >> wrote: > >>> > >>> Adam Kadzban wrote: > >>> > >>> > I have

Re: [Tkinter-discuss] IntVar() not being attached to Checkbutton

2009-06-10 Thread Guilherme Polo
On Wed, Jun 10, 2009 at 7:51 PM, Adam Kadzban wrote: > On Wed, Jun 10, 2009 at 5:42 PM, Adam Kadzban wrote: >> >> >> On Wed, Jun 10, 2009 at 5:08 PM, John McMonagle >> wrote: >>> >>> Adam Kadzban wrote: >>> >>> > I have the main part of the GUI (which has Checkbuttons that behave >>> > normally),

Re: [Tkinter-discuss] IntVar() not being attached to Checkbutton

2009-06-10 Thread Guilherme Polo
On Wed, Jun 10, 2009 at 7:42 PM, Adam Kadzban wrote: > > > On Wed, Jun 10, 2009 at 5:08 PM, John McMonagle > wrote: >> >> Adam Kadzban wrote: >> >> > I have the main part of the GUI (which has Checkbuttons that behave >> > normally), with a menu option to create another window for some >> > "advan

Re: [Tkinter-discuss] IntVar() not being attached to Checkbutton

2009-06-10 Thread John McMonagle
Adam Kadzban wrote: > I have the main part of the GUI (which has Checkbuttons that behave > normally), with a menu option to create another window for some > "advanced options". The code for this window is in its own class, which > takes a list of options as parameters and then has some check box

Re: [Tkinter-discuss] IntVar() not being attached to Checkbutton

2009-06-10 Thread Adam Kadzban
On Wed, Jun 10, 2009 at 5:42 PM, Adam Kadzban wrote: > > > On Wed, Jun 10, 2009 at 5:08 PM, John McMonagle > wrote: > >> Adam Kadzban wrote: >> >> > I have the main part of the GUI (which has Checkbuttons that behave >> > normally), with a menu option to create another window for some >> > "adva

Re: [Tkinter-discuss] IntVar() not being attached to Checkbutton

2009-06-10 Thread Adam Kadzban
On Wed, Jun 10, 2009 at 5:08 PM, John McMonagle wrote: > Adam Kadzban wrote: > > > I have the main part of the GUI (which has Checkbuttons that behave > > normally), with a menu option to create another window for some > > "advanced options". The code for this window is in its own class, which >

Re: [Tkinter-discuss] IntVar() not being attached to Checkbutton

2009-06-10 Thread Adam Kadzban
On Wed, Jun 10, 2009 at 3:50 PM, Michael Lange wrote: > Hi Adam, > > On Wed, 10 Jun 2009 15:19:14 -0500 > Adam Kadzban wrote: > > (...) > > boxes and entry boxes so you can change the option list. Here's the > > relevant code: > > > > ... > > self.tVar = IntVar() > > ... > > self.tempbutton = >

Re: [Tkinter-discuss] IntVar() not being attached to Checkbutton

2009-06-10 Thread Michael Lange
Hi Adam, On Wed, 10 Jun 2009 15:19:14 -0500 Adam Kadzban wrote: (...) > boxes and entry boxes so you can change the option list. Here's the > relevant code: > > ... > self.tVar = IntVar() > ... > self.tempbutton = > Checkbutton(self.tophalf,variable=self.tVar,text="Calculate > temperature") ..