Not really an Issue, but to me 'Then' in an 'If object = condition Then ... Else ...' construction is technically obsolete. However it may help enhance readability. So I'd suggest at least to allow:
If variable = True
Then
condition
Else
default
End If
or
If variable = True
condition
Else
default
End If
Which both are IMHO better to read than the current syntax:
If variable = True Then
condition
Else
default
End If
If variable = True
Then
condition
Else
default
End If
or
If variable = True
condition
Else
default
End If
Which both are IMHO better to read than the current syntax:
If variable = True Then
condition
Else
default
End If