Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- CA-Clipper Tools . Books 1-3 - <b>setlines()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 SETLINES()
 Determines the number of lines after which the screen display pauses
------------------------------------------------------------------------------
 Syntax

     SETLINES(<nLines>) --> cNullString

 Argument

     <nLines>  Designates the number of lines after which the screen
     display pauses.

 Returns

     The function always returns a null string.

 Description

     SETLINES() allows you to simulate a DOS MORE command for commands like
     LIST or DISPLAY.  To properly function, one input command must always be
     present in the related instruction (see example).

 Note

     .  Only line feeds are counted.

     .  If you use values less than or equal to 0 for <nNrLines>, the
        screen display does not pause.

 Example

     In this example, the screen output stops after 20 lines.  INKEY() allows
     you to continuously query the keyboard, while the NUL() suppresses the
     return value for INKEY().

     USE DATA
     SETLINES(20)                  // Stop after 20 lines
     LIST Field1, Field2, NUL(INKEY())


Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson