Does any one know of a way to shift a bit in VB (like what the << and >> commands in c do)?
Printable View
Does any one know of a way to shift a bit in VB (like what the << and >> commands in c do)?
Just multiply or integer divide by 2^(the number of bits to shift by). That's a simple way of doing it.
Thanks, will try that.