I am doing this construct a lot of times and use it like:
Code line:
If x=2 then
lblMessage.text = "It is an even number"
return
else
lblMessage.text = "x is not 2"
End if
This construct sometimes gives me an error and sometimes not.
If I have a few code lines after else, it will...