Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
WhilePrintingRecords;
Local StringVar a := ToText({Table.Field}, 'MM dd yyyy');
Local NumberVar b := Len(a);
Local NumberVar i;
Local StringVar RESULT := '';
for i := 1 to b Step 1 do
RESULT := RESULT + Mid(a, i,1) + ' ';
Replace(RESULT, ' ', ' ')
WhilePrintingRecords;
Local StringVar a := {ARRFH.DOCDATE};
Local NumberVar b := Len(a);
Local NumberVar i;
Local StringVar RESULT := '';
for i := 1 to b Step 1 do
RESULT := RESULT + Mid(a, i,1) + ' ';
Replace(RESULT, ' ', ' ')