If i have an if statement, for example:
how would i check which ones it had done if i had a different value for x three times. like, x was 1,1,and 3, so joe would never be static'ed. how would i check to see if bob was static'ed, joe was static'ed, and mike was static'ed?VB Code:
If x = 1 then Static bob as String = "hello" ElseIf Static joe as String = "hello2" Else Static mike as String = "hello3"
