ENTRY ( element , list , character )An integer value that corresponds to the position of a character string in a list of values. If the value of element does not correspond to an entry in the list, the AVM raises the ERROR condition. If the value of element is the Unknown value (?), ENTRY returns the Unknown value (?). If element is less than or equal to 0, or is larger than the number of elements in list, ENTRY returns an error.A list of character strings separated with a character delimiter. The list can be a variable of type CHARACTER or LONGCHAR. If the value of list is the Unknown value (?), ENTRY returns the Unknown value (?).
DEFINE VARIABLE datein AS DATE NO-UNDO.DEFINE VARIABLE daynum AS INTEGER NO-UNDO.DEFINE VARIABLE daynam AS CHARACTER NO-UNDO INITIAL "Sunday,Monday, Tuesday, Wednesday, Thursday, Friday, Saturday".SET datein LABEL "Enter a date (mm/dd/yy)".daynum = WEEKDAY(datein).DISPLAY ENTRY(daynum,daynam) FORMAT "x(9)" LABEL "is a" WITH SIDE-LABELS.
DEFINE VARIABLE typeface AS CHARACTER NO-UNDO.typeface = "-adobe-helvetica-bold-r-normal--*-210-*-*-*-*-iso*-*".DISPLAY ENTRY(3, typeface, "-") FORMAT "x(16)".The ENTRY function is double-byte enabled. It can return an entry that contains double-byte characters from a specified list and the character delimiter can be a double-byte character.
© 2013 Progress Software Corporation and/or its subsidiaries or affiliates. |