MAKEWPARAM
Creates a value for use as an wParam parameter in a message.
OutputVar := MAKEWPARAM(ValueLow, ValueHigh)
Function Example: wParam := MAKEWPARAM(10, 20)
Parameters
- OutputVar
-
The name of the variable to store the lParam value.
- ValueLow
-
The low-order value.
- ValueHigh
-
The high-order value.
Examples
MsgBox % MakeWParam(10, 20)