Answers for "excel vba first byte from INTEGER"

VBA
5

excel vba first byte from INTEGER

LoByte = n And &HFF					'<-- if n is a 2-byte Integer (left byte)
HiByte = (n And &HFF00&) \ &H100	'<-- if n is a 2-byte Integer (right byte)
Posted by: Guest on May-23-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language