home *** CD-ROM | disk | FTP | other *** search
- *********************
-
- FUNCTION Findarea
-
- PARAMETERS _thealias
-
- IF EMPTY(PCOUNT())
- RETURN(-1)
- ELSEIF TYPE("_thealias") != "C" .AND. TYPE("_thealias") != "N"
- RETURN(-1)
- ENDIF
-
- PRIVATE _returnto, _x
-
- FOR _x = 1 TO 250
- IF UPPER(_thealias) == ALIAS(_x)
- RETURN(_x)
- ENDIF
- NEXT
-
- RETURN(0)
-
- * End of File