Description
The CStr() function converts an expression to type String.
This function has the form:
CStr(expression)
Parameter | Description |
---|---|
expression | (required) Any valid expression. If expression is:
|
Examples
The following example shows the basic use of this function:
Msgbox(CStr("300000"))
Msgbox(CStr(#10-05-25#))
This produces the following result (each line in a separate pop-up message box):
300000
10/5/2025
Miscellaneous Information
Supported in Version: | 1.0 |
---|