我如何默认检查单选按钮
问题描述:
frns请问我如何在默认情况下检查单选按钮,以及当其选中时,curso必须位于textbox1中.请帮助我在vb.net中进行编码.
frns tel me how can i check the radiobutton by default and when its checked the curso has to be in textbox1. pls help me wih the coding in vb.net.
答
非常简单.将RadioButton的Checked属性设置为True. :)
It''s very easy.Set the Checked Property of RadioButton to True. :)
If RadioButton1.Checked = True Then
TextBox1.Focus()
End If