How to use FOR loop in Microsoft Dynamics Navision.

For understanding the use of FOR loop in NAV , show below example.

FOR i:=0 TO 10 DO
BEGIN
  MESSAGE(FORMAT(i));
END

 

OUTPUT:

Here it will display continuous message box 10 time with 1 to 10 number.

Comments

Popular posts from this blog

How to use serial.write() in Arduino.

How to make and use web service in Microsoft Dynamics Navision.

How to Generate random rows in dataset using c#.net