Hi, I'm new to VB.net. For a school project, I am trying to assign five variables to one label. And I want one of those variables to randomly show up when I hit the go button. Right now, a snip of my code looks like this:
Dim StrJob1 As String = "Teacher"
Dim StrJob2 As String = "House Maid"
Dim StrJob3 As String = "Lumber Jack"
Dim StrJob4 As String = "Doctor"
Dim StrJob5 As String = "Lawyer"
Dim StrJob6 As String = "Chef"
I hope this was clear... thanks in advanced.
Dim StrJob1 As String = "Teacher"
Dim StrJob2 As String = "House Maid"
Dim StrJob3 As String = "Lumber Jack"
Dim StrJob4 As String = "Doctor"
Dim StrJob5 As String = "Lawyer"
Dim StrJob6 As String = "Chef"
I hope this was clear... thanks in advanced.
Comment