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

  1. ********************
  2.  
  3. FUNCTION Anyundef
  4.  
  5.    PARAMETERS _thearray
  6.  
  7.    IF EMPTY(PCOUNT())
  8.       RETURN(.T.)
  9.    ENDIF
  10.  
  11.    IF TYPE("_thearray") != "A"
  12.       RETURN(.T.)
  13.    ENDIF
  14.  
  15.    PRIVATE _qaz
  16.  
  17.    FOR _qaz = 1 TO LEN(_thearray)
  18.       IF TYPE("_thearray[_qaz]") = "U"
  19.          RETURN(.T.)
  20.       ENDIF
  21.    NEXT
  22.    RETURN(.F.)
  23.  
  24. * End of File
  25.