home *** CD-ROM | disk | FTP | other *** search
- *********************
-
- FUNCTION Adeclare
-
- PARAMETERS _fname
-
- IF EMPTY(PCOUNT())
- RETURN(0)
- ELSEIF TYPE("_fname") != "C"
- RETURN(0)
- ENDIF
-
- PRIVATE _fhandle, _fileid
-
- _fhandle = FOPEN(_fname)
- _fileid = SPACE(33)
- FREAD(_fhandle, @_fileid, 33)
- FCLOSE(_fhandle)
- RETURN(VAL(SUBSTR(_fileid, 4, 10)))
-
- * End of FIle
-