Is there a more easy way to inverse a boolean instead of using a IF ELSE construction?
Normally I would use the ! infront of a boolean value. But that doesn't do the trick in Navision
Asked
Active
Viewed 1,111 times
2
2 Answers
0
You can use this example to invert a boolean variable Value:
PROCEDURE InvertValue(VAR Value @ Boolean;);
begin
Value := NOT Value;
end;

Vladimir Kozlov
- 1
- 1