When i use the UNDERLINE clause with USING fields it doesn't display the UNDERLINE unless the cursor is at the field. Is there anyway to ALWAYS display the underline for these fields.
The first image is how it looks now. The second image is how i would like it to appear.
Thanks in advance for any help.
working-storage section.
01 ws-field-1 pic x(10).
01 ws-field-2 pic x(10).
01 ws-field-3 pic x(10).
01 ws-field-4 pic x(10).
screen section.
01 my-screen.
05 pic x(10) value "field-1" line 5 col 5.
05 pic x(10) line 5 col 15 using ws-field-1 underline.
05 pic x(10) value "field-2" line 7 col 5
05 pic x(10) line 7 col 15 using ws-field-2 underline .
05 pic x(10) value "field-3" line 9 col 5.
05 pic x(10) line 9 col 15 using ws-field-3 underline .
procedure division.
display my-screen
accept my-screen
goback.


#COBOL
#adis
#VisualCOBOL
