i have two radiobutton in a groupbox
while retriving record from ms-access i need to display the rodiobutton as checked.
please help me
Printable View
i have two radiobutton in a groupbox
while retriving record from ms-access i need to display the rodiobutton as checked.
please help me
http://www.homeandlearn.co.uk/net/nets4p15.html
Go read that and stop posting thread after thread about the same subject.
If you want to set a radio button to the checked state :
If you want to perform some action when the condition of a radiobutton changes :Code:RadioButton1.Checked = True ' or set to False if you want it unchecked.
Code:Private Sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton1.CheckedChanged
If RadioButton1.Checked = True Then
' Code performed when checked
Else
' Code performed when not checked.
End If
End Sub