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.
dim f as field
for each f in myRS.fields
msgbox f.name
next
dim uLine as string
dim ch as string
uLine = headerinfo
for i = 1 to len(uLine)
ch = mid(uLine,i,1)
if(ch <> vbTab and ch <> "~")then
uline = replace(uLine,ch,"~")
end if
next