Skip to main content

How to code Border select attribute LVS_EX_BORDERSELECT constant in COBOL ?

  • February 15, 2013
  • 0 replies
  • 0 views

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.

Old KB# 5180

0 replies

Be the first to reply!