MKL

Does a binary copy from a KeyPgLongLong variable to a KeyPgStringString, setting its length to 
4 bytes

Syntax
	KeyPgDeclareDeclare KeyPgFunctionFunction MKL ( KeyPgByvalByVal number KeyPgAsAs KeyPgLongLong ) KeyPgAsAs KeyPgStringString

Usage
	result = MKL( number )

Parameters
	number
		A KeyPgLongLong variable to binary copy to a KeyPgStringString.

Return Value
	Returns a KeyPgStringString with a binary copy of the KeyPgLongLong.

Description
	Does a binary copy from a KeyPgLongLong variable to a KeyPgStringString, setting its length 
	to 4 bytes. The resulting string can be read back to a KeyPgLongLong by KeyPgCvlCVL.

	This function is useful to write numeric values to buffers without using 
	a KeyPgTypeType definition.

Example
	Dim a As Long, b As String
	a = 4534
	b = MKL(a)
	Print a, CVL(b)
	Sleep

Dialect Differences
	* The string type suffix "$" is required in the CompilerOptlang-lang qb dialect.
	* The string type suffix "$" is optional in the CompilerOptlang-lang fblite dialect.
	* The string type suffix "$" is ignored in the CompilerOptlang-lang fb dialect, warn 
	  only with the CompilerOptw-w suffix compile option (or CompilerOptw-w pedantic compile 
	  option).

Differences from QB
	* None

See also
	* KeyPgMkdMKD
	* KeyPgMkiMKI
	* KeyPgMksMKS
	* KeyPgCvdCVD
	* KeyPgCviCVI
	* KeyPgCvlCVL
	* KeyPgCvsCVS

