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.
clear
n= afields(fieldInfo)
for i=1 to n
? fieldInfo(i,1), fieldInfo(i,2), (fieldInfo(i,2)="C"), fieldInfo(i,3)
if fieldInfo(i,2)="C"
fildname = fieldInfo(i,1)
fildsize = fieldInfo(i,3)
replace &fildname. with padr("'"+&fildname., fildsize) for &fildname.="+"
endif
next
?"Over!"
private myFields,myFieldname,i
use mytable
myFields = afields(myArray)
for i = 1 to myFields
myFieldname = myArray(i,1)
if myArray(i,2) = "C"
replace all &myFieldname. with trim(&myFieldname.)+"'" for left(&myFieldname.,1) = "+"
endif
next