PL/I

PL/I

PL/I

 View Only
  • 1.  How we can clear screen

    Posted 09/18/14 09:53 AM

    hi

    I work with PL/I in z/VM

     

    I need to clear screen during execution of a pli program. how can i do it with a pli program or with a pli statement ?

    thanks

    FF1352


  • 2.  Re: How we can clear screen

    Posted 12/02/14 10:32 AM

    I know of no specific option or command.

    You'd need to look at the manual for the screen you are using.

    There might be an ESC sequence that will do it, and if so,

    you can send it using PUT EDIT.

     

    Alternatively, use PUT EDIT to write out sufficient blank lines, e.g.:

    PUT EDIT ( ('' DO I = 1 TO 10) ) (SKIP, A(1) );

    Robin400