vb Code:
Private Sub rdbAfghanistan_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles rdbAfghanistan.CheckedChanged
If rdbAfghanistan.Checked And random = 0 Then
lblMessage.Text = "Congratulations, you'ge got the corrent one"
rdbAfghanistan.Checked = False
Else
lblMessage.Text = "Sorry, you are wrong, the correct answer is "
rdbAfghanistan.Checked = False
End If
btnFlag.Enabled = True 'enable the btnFlag button
pnlCountries.Enabled = False 'disable the pnlCountries panel
End Sub