Navigation bar
  Start Previous page
 267 of 283 
Next page End 262 263 264 265 266 267 268 269 270 271 272  

258
UCase
Type
Function returning String
Invocation
UCase(str) 
Parameter
Method
Type
Description
str
ByVal
String
The string to be changed to upper case.
Discussion
This function returns a new string containing the same characters as the passed string except that all
lower case characters will be replaced with upper case characters.
Example
Dim s as String, s1 as String
s = "Hello, world!"
s2 = UCase(s)
' the result will be "HELLO, WORLD!"
See Also
Previous page Top Next page