Dim response As String
response = MessageBox.Show("Are you sure you want to exit?", "Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation)
If response = 6 Then
End
ElseIf response = 7 Then
Me.Close()
End If
Above is the code to exit a form. When i exit my form a message box appears telling me if i want to exit. I can either chose Yes or No. What i can't understand from the above code what does the number 6 and seven represent actually.