home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / USCX / STEVEUT.ZIP / LOCATE.DOC < prev    next >
Text File  |  1984-05-22  |  936b  |  24 lines

  1.                          Procedure:  LOCATE.ASM
  2.                            Written:  5-22-84
  3.  
  4.      Procedure to locate the cursor at a specified region on the
  5. display.  Procedure requires the following parameters:
  6.         ROW and COLUMN:    (both must be type integer)
  7.  
  8.      For Pascal:  Declaration as:
  9.                 PROCEDURE LOCATE ( X, Y : INTEGER); EXTERNAL;
  10.  
  11.      X & Y are both dummies, may be any name.  You may pass with
  12. anything such as local variable names, constants, global identifiers or
  13. anything which are type integer.
  14.  
  15. ex:     Locate (1, 16);   {  locate row 1, column 16  }
  16.         Locate (row,column);   { row and column are type integer  }
  17.  
  18.       Link with:  Object filenames [.OBJ]:  <primary fname>+locate
  19.  
  20.                               Steve Leoce
  21.                           201 Delaware Avenue
  22.                        Kingston , New York 12401
  23.                              (914) 338-4593
  24.