Answers for "excel vba long integer variable to bits"

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
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 integer variable to bits"

Code answers related to "VBA"

Browse Popular Code Answers by Language