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.
MyString = StrConv(MyString, vbProperCase)
Function Proper(AString As String) As String
'Convert first character of AString to upper case
Dim FirstChar As String
FirstChar = Left$(AString, 1)
FirstChar = Chr(Asc(FirstChar) And &HDF)
Proper = FirstChar + Mid$(AString, 2, Len(AString) - 1)
End Function