CStr Function
Syntax
CStr(expr)
Group
Conversion
Description
Converts to a String.
Parameters
| expr
|
Converts a number or string value to a string value using the
current locale (GetLocale).
|
Sub Main
Debug.Print CStr(Sqr(2)) '"1.4142135623731" - US English locale
End Sub