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.
def var i as int init 0 no-undo.
def temp-table t-file
field t-field as char/int/logi format ...
index i-index {is unique}
t-field ascending/descending
.
for each record no-lock:
do i = 1 to 52:
create t-file.
assign
t-file.t-field = record.field[i].
end.
end.