home *** CD-ROM | disk | FTP | other *** search
- *****************************************************************
- FUNCTION NDXCOUNT (aliasname)
- *****************************************************************
-
- * Return number of active index files for selected database
-
- * Copyright(c) 1991 - James Occhiogrosso
-
- LOCAL counter
-
- * Count active indexes to the Clipper maximum of 15
-
- FOR counter = 1 TO 15
- IF EMPTY(INDEXKEY(counter))
- EXIT
- ENDIF
- NEXT
-
- RETURN (counter - 1)
-
-
-
-