Michael Ryan wrote:
Hi Adam -

Actually, I have to test each bit in PrimaryBitMap to see if that bit is on
or off.

It's too bad that there isn't a %testbit() function. As far as I know, the most straightforward way of doing this would be to define a "mask" for each bit you want to test.

For example, say your bit map is a set of customer information flags.
http://code.midrange.com/71a457c8f6.html

Another possibility would be to define eight masks, one mask for each bit in a byte, then loop through each byte in the bitmap field, setting elements of a 64-element array of indicators to *ON or *OFF as appropriate. Then you could set up constants to name each of the bits

D ACTIVE_CUST...
D C 1
// binary 01000000....0000, test second bit
D PAYMENT_DUE_MASK...
D C 2

and say things like

if (flag(ACTIVE_CUST) = *ON);
// do active cust processing

Yet another possibility is to build a service program with one procedure per flag, where each procedure would use one of the masks from the first example. This might be the best way to go if you need to test these flags in more than one place.

HTH,
Adam

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.