it is hard to find, maybe it has been posted before.
Does it make sense to use the THEN keyword for IF conditions, just to continue it on a single line?
Example:
Code: Select all
If Condition = #True Then Value = 1 [Else Value = 0]
Code: Select all
If Condition = #True
Value=1
[Else
Value = 0]
Endif
Uwe