Quote Originally Posted by SofaKingH4rd View Post
I never thought of that. Thank you.

Is this the correct code?
Code:
If RadioButton1.Checked Then

Msg("You have chosen 6,500 NX")

End If

End Sub
If RadioButton1.Checked = true Then
'do anything what ya want.
End If
End Sub