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.
Function IsField(sTbl as string, sField as string) as boolean
Dim tdf as tabledef
dim fld as field
set tdf=currendb.tabledefs(sTbl)
for each fld in tdf
if fld.name=sfield then
isField=true
exit function
end if
next fld
end funciton