Click to See Complete Forum and Search --> : binary operators with CR


gbr
August 4th, 2005, 05:11 AM
How can I test if a specific bit in an integer is set or not?
In C# I use

if( (value & 0x1) == 0x1 )
...

to check the variable, but how to do this with crystal report syntax???

gbr