Answers for "vba convert 2 Short integers to a Long integer"

VBA
4

excel vba convert 2 Short integers to a Long integer

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 "vba convert 2 Short integers to a Long integer"

Code answers related to "VBA"

Browse Popular Code Answers by Language