Answers for "excel vba long value to bits"

VBA
3

excel vba make long from two shorts

Public Function MakeLong&(ByVal LoWord%, ByVal HiWord%)
    MakeLong = (HiWord * &H10000) Or (LoWord And &HFFFF&)
End Function
Posted by: Guest on May-23-2020

Code answers related to "excel vba long value to bits"

Code answers related to "VBA"

Browse Popular Code Answers by Language