Public Function StringIsAlpha(s As String) As Boolean
Is the string Alphabetic (A..Z, a..z) ?
Identification of string classes
Is the string Alphabetic (A..Z, a..z) ?
Is the string AlphaNumeric (A..Z, a..z, 0..9) ?
Is the string a valid Currency (ie. CCur(s) will succeed) ?
Is the string a valid Decimal (ie. CDec(s) will succeed) ?
Is the string a valid Double (ie. CDbl(s) will succeed) ?
Is the string a valid Integer (ie. CInt(s) will succeed) ?
Is the string a valid Long (ie. CLng(s) will succeed) ?
Is the string a valid Single (ie. CSng(s) will succeed) ?
Is the string a valid GUID ?