Where are Bitwise Operators

D

Dennis W. Bulgrien

How does one do bitwise manipulations such as exclusive-or (XOR), AND, etc.?
 
D

Dennis W. Bulgrien

Make VBA functions like these:

Public Function BITXOR(x As Long, y As Long)
BITXOR = x Xor y
End Function

Public Function BITAND(x As Long, y As Long)
BITAND = x And y
End Function

Public Function BITOR(x As Long, y As Long)
BITOR = x Or y
End Function

How does one do bitwise manipulations such as exclusive-or (XOR), AND, etc.?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top