|
-
Mar 17th, 2010, 12:23 AM
#5
Thread Starter
Member
Re: How to use To.Upper Procedure?
 Originally Posted by formlesstree4
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|