This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
CStr Function Example
This example uses the
CStr function to convert a numeric value to a
String.
Dim MyDouble, MyString
MyDouble = 437.324 ' MyDouble is a Double.
MyString = CStr(
MyDouble)
' MyString contains "437.324".