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

  1. ********************
  2.  
  3. FUNCTION Try2open
  4.  
  5.    PARAMETERS _iof, _ioh
  6.  
  7.    IF PCOUNT() != 2
  8.       RETURN(.F.)
  9.    ELSEIF TYPE("_iof")+TYPE("_ioh") != "CN"
  10.       RETURN(.F.)
  11.    ENDIF
  12.  
  13.    * _iof is the file to try to open
  14.    * _ioh is passed by REFERENCE!!
  15.  
  16.    IF EMPTY(_iof)
  17.        RETURN(.F.)
  18.    ENDIF
  19.  
  20.    _ioh = FOPEN(_iof)
  21.    RETURN( ( FERROR() = 0 ) )
  22.  
  23. * End of File
  24.  
  25.  
  26.