MKD


Does a binary copy from a double variable to a string, setting its length to 8 bytes

Syntax:
Usage:
result = Mkd[$]( number )

Parameters:
number
A double variable to binary copy to a string.

Return Value:
Returns a string with a binary copy of the double.

Description:
Does a binary copy from a double variable to a string, setting its length to 8 bytes. The resulting string can be read back to a double by Cvd.

This function is useful to write numeric values to buffers without using a Type definition.

Examples:
Dim n As Double, e As String
n = 1.2345
e = MKD(n)
Print n, CVD(e)


Dialect Differences:
Differences from QB:
See also:
Back to String Functions
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki



sf.net phatcode