vote up 1 vote down star

How can this code be converted to COBOL?

Result := GetSysColor(Color and $000000FF)

The value types are DWORD, I guess it is a bitwise operation.

flag

1 Answer

vote up 4 vote down check

Yes, it's a bitwise operation, however, this specifically operation is equivalent to

COMPUTE Result = Color mod 256.

Or

COMPUTE Result = MOD(Color, 256).

If I remember my COBOL correctly. It has been decades years since I worte a line of COBOL.

link|flag
2  
shouldn't that be mod 256? – dummzeuch Jun 9 at 16:38
Definitely. Fixing ... – gabr Jun 10 at 9:54
Thanks... I completely forgot to carry one. :-\ – Paulo Santos Jun 10 at 11:08
1  
The COBOL 85 standard has no mod operator. Use the MOD function instead with RESULT = MOD(Color,256) – Paul Morgan Jun 15 at 14:28
Thanks, Morgan. Added variant. – Paulo Santos Jun 15 at 14:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.