Hello everyone!!!! I need some help to make a condition that if a user will select or click more than 1 button, there would be a MsgBox("You can only select one seat for every Process") appeared.... The scenario is this: I have 5 buttons(A3, A4, A5, A6, A7) and on the code below shows that if a user will select any of the buttons, the BackColor of the Button will be Red and so IF a user will select or click again as the users second choice, THEN there would a MsgBox("You can only select one seat for every Process") appeared. What code is appropriate for the Condition? I will really appreciate any HELP ..... Thank You so MUCH!!!:'(
Private Sub A3_Click(sender As Object, e As EventArgs) Handles A3.Click, A4.Click, A5.Click, A6.Click, A7.Click
sender.BackColor = Color.Red
If sender Then
MsgBox()
End If