Hi
Is there any way i can say this expression
http://i41.tinypic.com/28cg7yh.png
like this
http://i44.tinypic.com/2eptrg3.png
in any way?
This would be very valuable to me
Hi
Is there any way i can say this expression
http://i41.tinypic.com/28cg7yh.png
like this
http://i44.tinypic.com/2eptrg3.png
in any way?
This would be very valuable to me
Just use another alterable value to store the value, and then compare that - exactly the same as if you're comparing a distance or anything else.
Im using BITWIZE operations to turn the bits in an AltValue On and Off ( how i do this is not importaint to this thread ).
Im then using BITWIZE operations to check if spesific bits are On or Off, like this:
AltValueA_ and 1 = 1, this returns true if bit nr 1 of AltValueA_ is turned on
AltValueA_ and 2 = 2, this returns true if bit nr 2 of AltValueA_ is turned on
AltValueA_ and 4 = 4, this returns true if bit nr 3 of AltValueA_ is turned on
AltValueA_ and 8 = 8, this returns true if bit nr 4 of AltValueA_ is turned on
AltValueA_ and 16 = 16, this returns true if bit nr 8 of AltValueA_ is turned on
and so on
...
How can i check bit activation this way by 'comapiring to object AlterableValue_'?