home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 339.lha / DispMod / Docs / GETLINE.doc < prev    next >
Text File  |  1990-02-07  |  824b  |  28 lines

  1.  
  2. NAME:    GETLINE
  3.  
  4. SYNTAX:  GETLINE [prompt string]
  5.  
  6. DECRIPTION:
  7.  
  8.   Asks for a line of text from the user.  If the optional prompt
  9.   string is supplied, it will be printed first.  Creative use of TEXT,
  10.   HTEXT, and CRSR will allow you to be quite creative in how you want
  11.   a screen to look when inputting such things as database fields, etc.
  12.   The resulting string is returned in RESULT. OPTIONS RESULTS must have
  13.   perviously been issued in order for the string to be returned.
  14.  
  15. EXAMPLE:
  16.  
  17.     CRSR 22 1
  18.     GETLINE 'Please enter name: '
  19.     SAY RESULT
  20.  
  21.   This example will place the indicated string at row 22, column 1,
  22.   and leave the cursor positioned right after it. After the user enters
  23.   a string, the command will return, and the SAY RESULT command will
  24.   print the resulting string.
  25.  
  26. SEE ALSO: CRSR, TEXT, HTEXT
  27.  
  28.