In other programming languages there are special functions for that but I haven't figured out a function solving this problem in Nav.
Hi Chap.
Navision is not a programming language, its and ERP product with an integrated development environment. Please don't go down the path of looking for C++ and Fortran and Prolog constructs or you will just end out banging your head against a wall.
Answers
Microsoft Dynamics NAV Developer since 1997
MSDynamics.de - German Microsoft Dynamics Community - member of [clip]
thanks a lot for your reply.
Hi Chap.
Navision is not a programming language, its and ERP product with an integrated development environment. Please don't go down the path of looking for C++ and Fortran and Prolog constructs or you will just end out banging your head against a wall.
Work with NAV and you will grow to love it.
[code][
J := 0;
FOR I := STRLEN(YourText) DOWNTO 1 DO BEGIN
J += 1;
ReverseText[J] := YourText;
END;
/code]
Any I deas how to make it work with an array? YourText[k])
FOR I := STRLEN(YourText[k]) DOWNTO 1 DO BEGIN
J += 1;
ReverseText[k][J] := YourText;
END;