Was this helpful?
Tabledata
Steps through the columns in a table field.
Example--tabledata statement:
The following example loops through a form, printing out all field and column names:
## formdata formname
## {
##  inquire_frs field "" (fldname = name, istable = table)
    if (istable = 1) then
         print fldname, " is a table field"
##       tabledata
##       {
##            inquire_frs column "" "" (colname = name)
              print colname, " is a column"
##       }
    else
         print fldname, " is a regular field"
    end if
## }
Last modified date: 11/28/2023