help with radionbutton

Sang Park godsknight07 at gmail.com
Tue Mar 27 00:51:51 EDT 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/python-list/attachments/20070326/a7d9bb74/attachment.html>


More information about the Python-list mailing list