0% found this document useful (0 votes)
60 views1 page

School Information

This code defines event handlers for different checked change events on radio buttons that set the text of a label to different addresses depending on which radio button is checked. Each radio button corresponds to a different educational institution and sets the label text to that institution's address when checked.

Uploaded by

api-308658805
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
60 views1 page

School Information

This code defines event handlers for different checked change events on radio buttons that set the text of a label to different addresses depending on which radio button is checked. Each radio button corresponds to a different educational institution and sets the label text to that institution's address when checked.

Uploaded by

api-308658805
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Public Class Form1

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


System.EventArgs) Handles LTSS.CheckedChanged
Label2.Text = "6151 180 St, Surrey, BC"
End Sub
Private Sub MC_CheckedChanged(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MC.CheckedChanged
Label2.Text = "5811 184 St, Surrey, BC"
End Sub
Private Sub BCIT_CheckedChanged(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles BCIT.CheckedChanged
Label2.Text = "3700 Willingdon Ave, Burnaby, BC"
End Sub
Private Sub KPU_CheckedChanged(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles KPU.CheckedChanged
Label2.Text = "12666 72 Ave, Surrey, BC"
End Sub
Private Sub CL_CheckedChanged(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles CL.CheckedChanged
Label2.Text = "7003 188 St, Surrey, BC"
End Sub
End Class

You might also like