MAKELONG

Creates a LONG value by concatenating the specified values.


OutputVar := MAKELONG(ValueLow, ValueHigh)
Function Example: Long := MAKELONG(10, 20)

Parameters

OutputVar

The name of the variable to store the LONG value.

ValueLow

The low-order value.

ValueHigh

The high-order value.

Examples

MsgBox MakeLong(10, 20)