What is the difference between this:
Select Case MyCondition
Case vbNullstring
Case Else
End Select
and this:
Select Case MyCondition
Case Is = vbNullstring
Case Else
End Select
I seem to remember there IS a difference, if you were testing for a value or...