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

有帮助吗?

解决方案

You can use the NOT keyword in place of !.

其他提示

You can use this example to invert a boolean variable Value:

PROCEDURE InvertValue(VAR Value @ Boolean;);
begin
  Value := NOT Value;
end;
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top