.. |_| unicode:: 0xA0 :trim: .. role:: small-caps :class: small-caps .. include:: .. index:: single:Non-standard extensions .. index:: single:Extensions .. index:: single:Non-standard extensions Non-standard extensions ======================= .. _SELECT: .. index:: single:SELECT ASSIGN TO SELECT ASSIGN TO ---------------- .. index:: single:@code{SELECT ASSIGN TO} .. index:: single:@code{SELECT} A file may be assigned to a literal file, a file in a variable, or a file in an environment variable. .. index:: single:Literal file. Literal file. ~~~~~~~~~~~~~ Assign to a literal file. :: Select assign to "/tmp/myfile.txt". .. index:: single: ~~~~~~~~~~ Assign to a file which name is read from a variable. :: Select assign to my-file. 01 my-file pic x(512). Move "/tmp/myfile.txt" to my-file. Open output . .. index:: single: ~~~~~~~~~~~~~~~~~~~~~~ Assign to a file in an environment variable. :: export myfile=/tmp/myfile.txt Select assign to external myfile. .. _Indexed: .. index:: single:Indexed file packages Indexed file packages --------------------- .. index:: single:Indexed file packages .. index:: single:Indexed .. _ExtendedAACCEPT: .. index:: single:Extended ACCEPT statement Extended ACCEPT statement ------------------------- .. index:: single:Extended @code{ACCEPT} statement Extended \ :code:`ACCEPT`\ statements allow for full control of items accepted from the screen. Items accept by line and column positioning. All commands following \ :code:`WITH`\ are optional. :: ACCEPT LINE | COLUMN | WITH AUTO-SKIP | AUTO BACKGROUND-COLOR | BELL | BEEP BLINK FOREGROUND-COLOR | LOWLIGHT | HIGHLIGHT PROMPT PROTECTED SIZE [IS] | UPDATE ON EXCEPTION NOT ON EXCEPTION END-ACCEPT. .. index:: single:LINE LINE ~~~~ .. index:: single:@code{LINE} The line number of or to accept the field. .. index:: single:COLUMN COLUMN ~~~~~~ .. index:: single:@code{COLUMN} The column number of or to accept the field. .. index:: single:AUTO-SKIP AUTO-SKIP ~~~~~~~~~ .. index:: single:@code{AUTO} .. index:: single:@code{AUTO-SKIP} The word \ :code:`AUTO`\ may be used for \ :code:`AUTO-SKIP`\ . With this option the \ :code:`ACCEPT`\ statement returns after the last character is typed at the end of the field. This is the same as if the Enter key were pressed. Without this option the cursor remains at the end of the field and waits for the user to press Enter. The Right-Arrow key returns from the end of the field. The Left-Arrow key returns from the beginning. :ref:`ACCEPT special `. The Alt-Right-Arrow and Alt-Left-Arrow keys never \ :code:`AUTO-SKIP`\ . .. index:: single:BACKGROUND-COLOR BACKGROUND-COLOR ~~~~~~~~~~~~~~~~ .. index:: single:@code{BACKGROUND-COLOR} The background color is the color used behind the characters. or must be numeric. See file :file:`screenio.cpy` for the color assignments to or . .. index:: single:BELL BELL ~~~~ .. index:: single:@code{BEEP} .. index:: single:@code{BELL} The word \ :code:`BEEP`\ may be used for \ :code:`BELL`\ . The system beeps when the cursor moves to accept from this field. On some systems, there is no sound. Some other method may indicate a beep, such a flashing screen or pop up window. .. index:: single:BLINK BLINK ~~~~~ .. index:: single:@code{BLINK} The field blinks while the user enters the data. This can help small menu selection fields to stand out. .. index:: single:FOREGROUND-COLOR FOREGROUND-COLOR ~~~~~~~~~~~~~~~~ .. index:: single:@code{FOREGROUND-COLOR} The foreground color is the color used for the characters. or must be numeric. See file :file:`screenio.cpy` for the color assignments to or . .. index:: single:LOWLIGHT LOWLIGHT ~~~~~~~~ .. index:: single:@code{HIGHLIGHT} .. index:: single:@code{LOWLIGHT} The \ :code:`LOWLIGHT`\ and \ :code:`HIGHLIGHT`\ phrases vary the intensity of the field. \ :code:`LOWLIGHT`\ displays with lower intensity and \ :code:`HIGHLIGHT`\ displays with higher intensity. Having neither \ :code:`LOWLIGHT`\ nor \ :code:`HIGHLIGHT`\ displays at normal intensity. These may have different levels of intensity, if at all, depending on the make and model of the screens. .. index:: single:PROMPT PROMPT ~~~~~~ .. index:: single:@code{PROMPT} Display the field with prompt characters as the cursor moves to accept from this field. .. index:: single:PROTECTED PROTECTED ~~~~~~~~~ .. index:: single:@code{PROTECTED} \ :code:`PROTECTED`\ is ignored. .. index:: single:SIZE SIZE ~~~~ .. index:: single:@code{SIZE} The size of to accept from the screen. or must be numeric. * \ :code:`SIZE`\ If or is less than the length of then only the \ :code:`SIZE`\ number of characters accept into the field. pads with spaces after \ :code:`SIZE`\ to the end of the field. If or is greater than , then the screen pads with spaces after to the \ :code:`SIZE`\ length. * \ :code:`SIZE ZERO`\ * <\ :code:`SIZE`\ option not specified> The accepts to its field length. .. index:: single:UPDATE UPDATE ~~~~~~ .. index:: single:@code{UPDATE} The contents of variable-1 displays on the screen as the \ :code:`ACCEPT`\ begins. This allows the user to update the field without having to type it all again. Without this option, the \ :code:`ACCEPT`\ field is always blank. .. index:: single:ON EXCEPTION ON EXCEPTION ~~~~~~~~~~~~ .. index:: single:@code{ON EXCEPTION} Check the special register cob-crt-status for the special key that was pressed. This includes Escape, Tab, Back-Tab, F-keys, arrows, etc... See screenio.cpy for the values. .. index:: single:NOT ON EXCEPTION NOT ON EXCEPTION ~~~~~~~~~~~~~~~~ .. index:: single:@code{NOT ON EXCEPTION} Reset any F-key indicator because no special key was pressed. .. _ACCEPTAspecial: .. index:: single:ACCEPT special keys ACCEPT special keys ------------------- .. index:: single:@code{ACCEPT} special keys Special keys are available for extended \ :code:`ACCEPT`\ statements. The \ :code:`COB-CRT-STATUS`\ values are in the screenio.cpy copy file. .. index:: single:Arrow keys Arrow keys ~~~~~~~~~~ .. index:: single:Arrow keys The Left-Arrow key moves the cursor to the left. Without \ :code:`AUTO-SKIP`\ the cursor stops at the beginning of the field. With \ :code:`AUTO-SKIP`\ it returns with the \ :code:`COB-SCR-KEY-LEFT`\ value of 2009. :ref:`Extended ACCEPT `. The Alt-Left-Arrow key is the same as Left-Arrow except that it never returns, even for \ :code:`AUTO-SKIP`\ . The Right-Arrow key moves the cursor to the right. Without \ :code:`AUTO-SKIP`\ the cursor stops at the end of the field. With \ :code:`AUTO-SKIP`\ it returns with the \ :code:`COB-SCR-KEY-RIGHT`\ value of 2010. :ref:`Extended ACCEPT `. The Alt-Right-Arrow key is the same as Right-Arrow except that it never returns, even for \ :code:`AUTO-SKIP`\ . .. index:: single:Backspace key Backspace key ~~~~~~~~~~~~~ .. index:: single:Backspace key The Backspace key moves the cursor, and the remainder of the text, to the left. .. index:: single:Delete keys Delete keys ~~~~~~~~~~~ .. index:: single:Delete keys The Delete key deletes the cursor's character and moves the remainder of the text to the left. The cursor does not move. The Alt-Delete key deletes all text from the cursor to the end of the field. .. index:: single:End key End key ~~~~~~~ .. index:: single:End key The End key moves the cursor after the last non-space character. Pressing the End key again moves the cursor to the end of the field. Repeated pressing moves the cursor back and forth. .. index:: single:Home key Home key ~~~~~~~~ .. index:: single:Home key The Home key moves the cursor to the first non-space character. Pressing the Home key again moves the cursor to the beginning of the field. Repeated pressing moves the cursor back and forth. .. index:: single:Insert key Insert key ~~~~~~~~~~ .. index:: single:Insert key The Insert key changes the insert mode. The value of the insert mode is used in all following \ :code:`ACCEPT`\ statements while the program is running. When the insert mode is on, typed characters move the existing characters to the right until field is full. When it is off, typed characters type over existing characters. Note: The insert mode is ignored for fields with a size of 1. The insert mode can also be changed by the \ :code:`COB_INSERT_MODE`\ setting at any time, :ref:`Appendix I `. .. index:: single:Tab keys Tab keys ~~~~~~~~ .. index:: single:Tab keys The Tab key returns from the \ :code:`ACCEPT`\ with the \ :code:`COB-SCR-TAB`\ value of 2007. The Shift-Tab key returns with the \ :code:`COB-SCR-BACK-TAB`\ value of 2008. .. _ExtendedADISPLAY: .. index:: single:Extended DISPLAY statement Extended DISPLAY statement -------------------------- .. index:: single:Extended @code{DISPLAY} statement Extended \ :code:`DISPLAY`\ statements allow for full control of items that display on the screen. Items display by line and column positioning. :: DISPLAY | | LINE COLUMN WITH BELL BLANK LINE | SCREEN ERASE EOL | EOS SIZE [IS] | END-DISPLAY. .. index:: single:BELL BELL ~~~~ .. index:: single:@code{BELL} Ring the bell. It is optional. .. index:: single:BLANK BLANK ~~~~~ .. index:: single:@code{BLANK SCREEN} .. index:: single:@code{BLANK LINE} Clear the whole line or screen. It is optional. * \ :code:`BLANK LINE`\ Clear the line from the beginning of the line to the end of the line. * \ :code:`BLANK SCREEN`\ Clear the whole screen. .. index:: single:ERASE ERASE ~~~~~ .. index:: single:@code{ERASE EOS} .. index:: single:@code{ERASE EOL} Clear the line or screen from LINE and COLUMN. It is optional. * \ :code:`ERASE EOL`\ Clear the line from LINE and COLUMN to the end of the line. * \ :code:`ERASE EOS`\ Clear the screen from LINE and COLUMN to the end of the screen. .. index:: single:SIZE SIZE ~~~~ .. index:: single:@code{SIZE} The size of , , or to display onto the screen. It is optional. * \ :code:`SIZE`\ If \ :code:`SIZE`\ is less than the length of or then only the \ :code:`SIZE`\ number of characters display. If \ :code:`SIZE`\ is greater than the length of or , then the screen pads with spaces after the field to the \ :code:`SIZE`\ length. Figurative constants display repeatedly the number of times in \ :code:`SIZE`\ . Except that \ :code:`LOW-VALUES`\ always positions the cursor (see \ :code:`SIZE`\ ZERO below). * \ :code:`SIZE ZERO`\ * <\ :code:`SIZE`\ option not specified> or displays with the field length. .. index:: single:Figurative Constants Figurative Constants ~~~~~~~~~~~~~~~~~~~~ .. index:: single:Figurative Constants Certain figurative constants and values have special functions. All other figurative constants display as a single character. * \ :code:`SPACE`\ Display spaces from LINE and COLUMN to the end of the screen. This is the same as WITH ERASE EOS. * \ :code:`LOW-VALUE`\ Position the cursor to LINE and COLUMN. The next \ :code:`DISPLAY`\ statement does not need a LINE or COLUMN to display at that position. * \ :code:`ALL X"01"`\ Display spaces from LINE and COLUMN to the end of the line. This is the same as \ :code:`WITH ERASE EOL`\ . * \ :code:`ALL X"02"`\ Clear the whole screen. This is the same as \ :code:`WITH BLANK SCREEN`\ . * \ :code:`ALL X"07"`\ Ring the bell. This is the same as \ :code:`WITH BELL`\ . .. _FUNCTIONACONTENT-LENGTH: .. index:: single:CONTENT-LENGTH CONTENT-LENGTH -------------- .. index:: single:@code{FUNCTION CONTENT-LENGTH} \ :code:`FUNCTION CONTENT-LENGTH`\ returns the length of NUL byte terminated data given a pointer: :: identification division. program-id. zlen. data division. working-storage section. 01 ptr usage pointer. 01 str pic x(4) value z"abc". *> Testing CONTENT-LENGTH procedure division. set ptr to address of str display content-length(ptr) goback. end program hosted. .. _FUNCTIONACONTENT-OF: .. index:: single:CONTENT-OF CONTENT-OF ---------- .. index:: single:@code{FUNCTION CONTENT-OF} \ :code:`FUNCTION CONTENT-OF`\ returns an alphanumeric field given a pointer and optional length: Data from pointer is returned as a COBOL field either by scanning for a NUL byte or using the optional length. Reference modification of result allowed. :: identification division. program-id. contents. data division. working-storage section. 01 ptr usage pointer. 01 str pic x(4) value z"abc". *> Testing CONTENT-OF procedure division. set ptr to address of str display content-of(ptr) display content-of(ptr, 2) display content-of(ptr)(2:2) goback. end program hosted. .. _SystemARoutines: