In VB you could try something like this (Warning: Untested Code follows)
Public Function HasUcase(strToTest) as Boolean
HasUcase = False
if strComp(strToTest,Lcase(strToTest),vbBinaryCompare) then
HasUcase = True
End If
End Function
It will return True if any character in the passed string is Uppercase, else
False when all of the characters are Lowercase.
Ron W
putch said:
using sql or VB, how would I find out if the string in a field has any