i have one combo box and one radio button.
course combo box
Radio button.
when i click the combo box, the radio button is to uncheck.
for that how can i do?
my code as follows;
SessAM.Checked = false;
but the above code is not working why what is the mistake i made from my above code.
Vishal GilbilePosted Mar 11, 2013, 6:16 AM
you will have to fire the Combox_SelectedIndexChanged Event so that whenever the combox item is selected your radiobutton should be unchecked.
private void ComboBox_SelectedIndexChanged(object sender,==)
{
radioButton.checked=false;
}
Hope that solves your problem. Kindly mark the answer as accepted it its solves your problem.
With Regards,
Vishal Gilbile