home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a075 / 1.img / TOOLKIT1.EXE / SST226.PRG < prev    next >
Encoding:
Text File  |  1989-08-08  |  468 b   |  24 lines

  1. ********************
  2.  
  3. FUNCTION Redeclare
  4.  
  5.    PARAMETERS _thearray, _thesize
  6.  
  7.    IF MEMORY(0) < 40
  8.       RETURN(.F.)
  9.     ELSEIF PCOUNT() != 2
  10.       RETURN(.F.)
  11.     ELSEIF TYPE("_thearray") + TYPE("_thesize") != "AN"
  12.        RETURN(.F.)
  13.     ENDIF
  14.  
  15.     PRIVATE _temparray[LEN(_thearray)]
  16.     ACOPY(_thearray, _temparray)
  17.     PUBLIC _thearray[ LEN(_temparray) + _thesize ]
  18.     AFILL(_thearray, "")
  19.     ACOPY(_temparray, _thearray)
  20.     _temparray = ""
  21.     RETURN(.T.)
  22.  
  23. * End of File
  24.