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