Problem:
How to code Border select attribute LVS_EX_BORDERSELECT constant in COBOL ?
Resolution:
In the Microsoft Windows C/C Header files the LVS_EX_BORDERSELECT constant is defined as:-
#define LVS_EX_BORDERSELECT 0x00008000 // border selection style instead of highlight
0x denotes hex in C so you could have something like:-
78 LVS-EX-BORDERSELECT value h"00008000".
in a COBOL program.
