Hi,
Why u use andalso? what is difference if i use and
AndAlso is short-circuiting logic. If the first expression returns false, behind expressions are never evaluated. In most case, it’s better than And because of performance.
Is it possible to do multiple condition using Else If? so i dont need to add if acitivity one by one
Yes, we can use Else if as the following.
Hope this helps you.
Regards,