I assigned hex value(FFFF) to the long variable like following code.
Dim lval As Long
lval = &HFFFF
I expect lval become 65535.
But it become -1.
How to fix this?
Dim lval As Long
lval = &HFFFF
I expect lval become 65535.
But it become -1.
How to fix this?