B
BluDog
Hi
If i am using a Select... Case is there any way to have the elements
of an array tested within a case, for example:
Dim MyChar as Char
Select Case MyChar
Case "a"c, "b"c, "c"c
'Do Something
End Select
Would something like this be possible:
Dim MyChar as Char
Dim testChars() as Char = {"a"c, "b"c, "c"c}
Select Case MyChar
CasetestChars
'Do Something
End Select
cheers
Blu
If i am using a Select... Case is there any way to have the elements
of an array tested within a case, for example:
Dim MyChar as Char
Select Case MyChar
Case "a"c, "b"c, "c"c
'Do Something
End Select
Would something like this be possible:
Dim MyChar as Char
Dim testChars() as Char = {"a"c, "b"c, "c"c}
Select Case MyChar
CasetestChars
'Do Something
End Select
cheers
Blu