
Originally Posted by
Adviser
Found a problem. Dictionary.Formatting.AllInCaps(). It incorrectly count char uppercase for non-english languages.
Don't know what I was thinking when I wrote that function ... try this:?
VB Code:
Public Shared Function AllInCaps(ByVal CompareWord As String) As Boolean
If CompareWord = System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase(CompareWord) Then
'all letters in this word are caps
Return True
End If
End Function

Originally Posted by
Adviser
Also found one more bug.
Will check this one out tomorrow... am tired as atm
Regards,
Kris