static void Job(Args _args)
{
int number=10;
do
{
print (strfmt("current number = %1", number));
number --;
}while (number != 0)
}
This job is for do-while testing only in X ++, and I get a “syntax error” in the last '}'
I am new to Dynamics AX and X ++, so I don’t know if there is something that I am missing, but I would say that it should work.
----- [EDIT] ----- the
second part of the question was moved to a separate question
source
share