home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / dbtools.zip / CLONGSAY.DOC next >
Text File  |  1986-10-06  |  2KB  |  48 lines

  1.  
  2.                 LONGSAY dBASE III(1) Screen Display Call Routine
  3.            ⌐ 1986, Kenneth E. Wilson, Digital Equipment Corporation
  4.  
  5. This program is provided to the DECdomain with the condition that it
  6. not be sold or included in any application which is sold.  This program
  7. is not warranted or guarranteed nor is it supported by its author.  Any
  8. problems found in this application should be logged in the dBASE notesfile.
  9.                     
  10. This routine when loaded will print a string on a Rainbow video screen.  It
  11. is intended to provide direct addressing for screen positions beyond 80
  12. columns. This routine is intended ONLY for the following system configuration:
  13. RAINBOW 100A/B, dBASE III V1.1 on MS-DOS(3) V2.11 or later.
  14.  
  15. To enable use of LONGSAY issue the following dBASE III command:
  16. .LOAD LONGSAY
  17.  
  18. The call is structured as follows:
  19.  
  20. CALL LONGSAY WITH '1,81,String to be displayed'
  21.      ^             ^^^ ^^
  22.      |- Function   ||| ||- This is the start of the string to be displayed
  23.         name       ||| |
  24.                    ||| |- This is then end of column indicator
  25.                    |||
  26.                    |||- This is the column number to begin displaying at
  27.                    ||
  28.                    ||- This is the end of row indicator
  29.                    |
  30.                    |- This is the row number to begin displaying at
  31.  
  32.  
  33. Note:  There cannot be any spaces between the beginning of the parameter
  34. string and the 'end of column indicator'.  The row number can be either 1 or
  35. 2 characters in length an must be between 0 and 23, and the column number
  36. can be 1,2 or 3 characters long and must be between 0 and 131.  The length
  37. of the string to be displayed is limited to 255 - (the length of the rest
  38. of the parameter string). Also, no video attributes are added and the current 
  39. state of SET COLOR has NO effect on the text displayed.  Any attributes 
  40. desired should either be included in the string or should be set prior 
  41. with ?? Chr(27)+'[x;x;xm' escape sequence.
  42.  
  43. See the PAINTIT routine also available from this author for screen painting
  44. of 80 and 132 column screens.
  45.  
  46. (1) dBASE III is a trademark of Ashton-Tate
  47. (3) MS is a trademark of MicroSoft
  48.