I try to check a checkbox in navision 2009 with the tool box.
I try it like this:
IF CurrForm."Bestaand afleveradres" = TRUE THEN
MESSAGE('hallo');
Bestaand afleveradres is the name of the checkbox
Thank you
Every control on form in Nav must have SourceExpr property filled with variable name. In your case it must be Boolean variable. Let's say it's called BoolVar
. This variable is what you must check.
IF BoolVar = TRUE THEN
MESSAGE('hallo');
You should really read some guide first.