Radio button question

  • Thread starter Thread starter Patrick De Ridder
  • Start date Start date
P

Patrick De Ridder

radioButton1.Clear(); doesn't work: what should it be?
Couldn't find anything in MSDN.
Many thanks,
Patrick.
 
If you want to make sure the radiobutton is not selected you can use:

radioButton1.Checked = false;
 
Back
Top