home *** CD-ROM | disk | FTP | other *** search
- *******************
-
- FUNCTION Isa_ntx
-
- PARAMETERS _thefile
-
- IF EMPTY(PCOUNT())
- RETURN(.F.)
- ELSEIF TYPE("_thefile") != "C"
- RETURN(.F.)
- ENDIF
-
- _thefile = IF((EMPTY(AT(".", _thefile))), _thefile + ".NTX", _thefile)
-
- PRIVATE _handle, _retval
-
- _handle = FOPEN(_thefile)
- IF _handle < 0
- RETURN(.F.)
- ELSE
- _retval = IF_NTX(_handle)
- FCLOSE(_handle)
- RETURN(_retval)
- ENDIF
-
- * End of File