Syntax
Public Function StringToUpper(ByRef stringVar As String) As Boolean
Description
This function is used to transform a given string into upper case.
Parameters
Key | Description |
stringVar | String value to change to upper case. |
Return value
Returns true if successful result, otherwise returns false. In order to get an error, call GetLastError()function.
Sample
Public Sub main () Dim STR STR =hello at vtl AlertMessage StringToUpper (STR) End sub
See Also