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 StringValid(ByVal sTest As String) As Boolean
StringValid = sTest Like "?####-#####"
End Function
Function StringValid(ByVal sTest As String) As Boolean
StringValid = sTest Like "[A-Z]####-#####"
End Function