[Tkinter-discuss] help needed with radiobutton

Sang Park godsknight07 at gmail.com
Tue Mar 27 06:49:56 CEST 2007


how do I select radionbutton by default?
for my school project, I need to have 10 radio buttons and have half  
of them selected
I have
for i in range(10):
	x = IntVar()
	if i < 5:
		rb = Radiobutton(buttonFrame, variable=x, value=1,state=DISABLED)	
	else:
		rb = Radiobutton(buttonFrame, variable=x, value=0,state=DISABLED)	

I tried x.set(1) or x.set(0) before or after but the all seem to be  
deselected when displayed on the screen
I also tried calling rb.select/deselect() but that doesn't seem to  
work either...
can anyone help me?	


Sang Park
lordofthefobs at gmail.com



-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/tkinter-discuss/attachments/20070326/eabc0177/attachment.htm 


More information about the Tkinter-discuss mailing list