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 Capital1st(strIn as string) as string
If Len(strIN) > 0 then
Captial1st = Ucase(Left(strIn,1)) & Mid(strIn,2)
else
Capital1st = strIn
end if
End function