Excel Vba Low Byte From Integer

[Solved] Excel Vba Low Byte From Integer | Vb - Code Explorer | yomemimo.com
Question : excel vba get low byte from INTEGER

Answered by : daniel-ferry

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)

Source : http://academy.excelhero.com/ | Last Update : Sat, 30 May 20

Answers related to excel vba low byte from integer

Code Explorer Popular Question For Vb