Form has 6 radiobuttons. How would I also clear the totalLabel.text when a different radiobutton is clicked?
I use this code to clear a label when data in a textbox changes:
Private Sub hoursTextBox_TextChanged(ByVal sender As Object, ByVal e _
As System.EventArgs) Handles hoursTextBox.TextChanged
'Clear totalLabel when data in hoursTextBox changes
totalLabel.Text = String.Empty
End Sub 'hoursTextBox_TextChanged


