You are on page 1of 1

Public Class Form1

Private Sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles RadioButton1.CheckedChanged
Label1.Text = "Scott Hoying - Vocals"
Label2.Text = "Mitch Grassi - Vocals"
Label3.Text = "Kirstin Maldonado - Vocals"
Label4.Text = "Avi Kaplan - Vocals"
Label5.Text = "Kevin Olusola - Vocals"
Label6.Text = Nothing
End Sub
Private Sub RadioButton2_CheckedChanged(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles RadioButton2.CheckedChanged
Label1.Text = "Ryan Tedder - Guitar"
Label2.Text = "Zach Filkins - Viola"
Label3.Text = "Eddie Fisher - Guitar"
Label4.Text = "Drew Brown - Guitar"
Label5.Text = "Brent Kutzle - Piano"
Label6.Text = Nothing
End Sub
Private Sub RadioButton3_CheckedChanged(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles RadioButton3.CheckedChanged
Label1.Text = "Adam Levine - lead vocals, lead and rhythm guitar"
Label2.Text = "Jesse Carmichael - keyboards, rhythm guitar, backing vocals"
Label3.Text = "Mickey Madden - bass guitar"
Label4.Text = "James Valentine - lead and rhythm guitar, backing vocals"
Label5.Text = "Matt Flynn - drums, percussion"
Label6.Text = "PJ Morton - keyboards, backing vocals"
End Sub
End Class

You might also like