Quote Originally Posted by formlesstree4 View Post
Your book is right. All you're doing is making the string (strName) in complete capital letters with the .ToUpper() method.
Code:
Dim str As String = "text"
str = str.ToUpper()
'Now str = TEXT
so you mean i replace str with strAbriviation right?
it didn't work