Ok my problem is probly simple but i cant seem to figure it out. When i click a differnt opt on the race selection screen on my game i cant seem to get the stats from the last class to go away. Im setting it up so my races each have a bonus stat of there own so its a big problem when you click another optbutten and the first stats just stack on top. The code im useing is.

Private Sub optDwarf_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles optDwarf.Click
lblStr.Text = Int(+1)
lblCon.Text = Int(+3)
End Sub




Is there a code i can put into that so that when another optbutten is pushed those stats will unload and the new ones will reload without stacking?