< Public Function Alphabet () As String (?)
Comments'------------------------------------------------------------------------- 'Returns a string containing the upper-case alphabet ' (Use "Alphabet() & lcase(Alphabet())" for upper and lower case) '-------------------------------------------------------------------------
Public Function Alphabet () As String
Alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
End Function