If nobody else but me reads this that is OK, this is just something I forget from time to time when working in VB.Net. To short circuit an expression the && or || operators in many other languagesĀ are AndAlso or OrElse in VB.Net.
Two really simple examples:
If a > b AndAlso a < c Then
If a > b OrElse a > c Then