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

  1. ********************
  2.  
  3. FUNCTION The_dbf
  4.  
  5.    * This function returns the alias/dbf name of the given
  6.    * select area/number
  7.  
  8.    PARAMETERS _whicha
  9.  
  10.    IF PCOUNT() = 0
  11.       RETURN(ALIAS(SELECT()))
  12.    ELSE
  13.       _whicha = IF(TYPE("_whicha")="C", ASC(UPPER(_whicha))-64, _whicha)
  14.    ENDIF
  15.    RETURN(ALIAS(_whicha))
  16.  
  17. * End of File
  18.  
  19.  
  20.