In a quick project, I have to use the If command to check if a radio button is checked or not, if it is checked I would make the Form's back color be replaced with the Radio button's forecolor. Example:
If rdoRed.Checked = True Then
Me.Backcolor = rdoRed.Forecolor
The teacher then challenged us to do this without the If/then commands, how would I come around this?