hello
I would like to create a subroutine, so that I don't have to repeat the code.
I have different labels on a form in which when the user clicks on them it hides the second form and show the third form
for now I have this code for every labels:
Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label2.Click
Label2.Text = "part2"
form2.Close()
UnitName = "Part2"
form3.Show()
I have tried and came up with this:
Public Sub UnitSet( ByVal UnitName As string)
Dim Name As String
form2.Close()
'Name = UnitName
form3.Show()
End Sub
but it is not working.