Tuesday, August 17, 2010

Visual Basic String Function : UCase

Purpose : The UCase function returns a copy of a a string in which all lowercase alphabetic characters have been converted to uppercase.

Syntax :
UCase ( strExpression )

strExpression : String you want conerted to uppercase

Dim strCommand as String
Dim strUpperCommand as String
strCommand = Command
StrUpperCommand = UCase ( strCommand )

No comments:

Post a Comment