04-09-2025, 04:44 PM
Is there any advantage of using a Constant over a hard number in this case?
Because I can think of tons where an IF would evaluate to true enough without being = to -1
Because I can think of tons where an IF would evaluate to true enough without being = to -1
Code: (Select All)
x = 1
If x Then Print x Else Print "false"
If x = _TRUE Then Print x Else Print "false"
b = b + ...