Is there any real difference between these two ways of writing select case statements?
OR THIS:
Cheers
mossimo
Code:
Select Case(sVariable)
Case “1” : Do(this) : Do(that)
Case “2” : Do(thistwo) : Do(thattwo)
End Select
OR THIS:
Code:
Select Case(sVariable)
Case “1”
Do(this)
Do(that)
Case “2”
Do(thistwo)
Do(thattwo)
End Select
Cheers
mossimo