Re: Tkinter toggle a Label Widget based on checkbutton value

2007-07-05 Thread Eric Brunel
On Wed, 04 Jul 2007 21:51:34 +0200, O.R.Senthil Kumaran <[EMAIL PROTECTED]> wrote: > Following is a tk code, which will display a checkbutton, and when > checkbox is > enabled, it will show the below present Label. > > What I was trying is, when checkbox is enabled the Label should be shown >

Re: Tkinter toggle a Label Widget based on checkbutton value

2007-07-04 Thread O.R.Senthil Kumaran
* Wojciech Mu?a <[EMAIL PROTECTED]> [2007-07-04 20:13:06]: > O.R.Senthil Kumaran wrote: > > Any suggestions on how can i make this checkbutton effect. > > 1) Press Enable IP, the Label IP should be shown. > > 2) Toggle Enable IP (So that its unset). the Label IP should not be shown. > > > > #!/us

Re: Tkinter toggle a Label Widget based on checkbutton value

2007-07-04 Thread Wojciech Muła
O.R.Senthil Kumaran wrote: > Any suggestions on how can i make this checkbutton effect. > 1) Press Enable IP, the Label IP should be shown. > 2) Toggle Enable IP (So that its unset). the Label IP should not be shown. > > #!/usr/bin/python > from Tkinter import * > root = Tk() > root.title('somethi

Tkinter toggle a Label Widget based on checkbutton value

2007-07-04 Thread O.R.Senthil Kumaran
Following is a tk code, which will display a checkbutton, and when checkbox is enabled, it will show the below present Label. What I was trying is, when checkbox is enabled the Label should be shown and when checkbox is disabled, the window should look like before. But, I am finding that once ena