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 getfilename(byval s as string) as string
dim ch as string
dim i as long
dim output as string
for i = len(s) to 1 step -1
ch = mid$(s,i,1)
if ch <> "\" then
output = ch & output
else
exit for
end if
next
getfilename = output
end function