Hi,

Im not sure how they call it, but I call it Binary rotation.
In VB.NET I can easily rotate numbers using something like this:

Code:
MsgBox(256 >> 2)          '// Wich will return: "64".

But on VB6 It won't work, so I need to know if there is a function in vb6 that maybe I don't know about, that can replace the ">>" or "<<" ?

Please help, thanks.