I want to use Select Case in this way (evaluation two values at the same time) , is it legal (It works half way though :( )?
VB Code:
'Class member variables Dim a As Integer Dim b As Integer 'Inside a method . Select Case a AndAlso b Case a = 20, b = 40 Case a = 70, b = 30 Case a = 0, b = 1 End Select
