Hi, I'm new to cobol.
I'm writing a small cobol program using screen section. I want the user to be able to push F-5 to get a pop up list for each entry field. I've found only one example on-line and my compiler does not recognize the language ( I'm using Visual Cobol for Eclipse 2.2).
It goes as follows:
SCREEN SECTION.
01 ORDER-SCREEN.
{ . . . }
03 "Cust #: ".
03 USING CUSTOMER-NO
BEFORE PROCEDURE IS SHOW-CUST-LEGEND
AFTER PROCEDURE IS TEST-CUSTOMER
EXCEPTION PROCEDURE IS CHECK-FOR-LOOKUP.
Is this the standard way of capturing function keys, or is there another way?
Thank you for your help.
-Peter
#COBOLCICSASRADebug




