Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- CA-Clipper Tools . Book 4-Appendices - <b>nnetslist()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 NNETSLIST()
 Returns a list of all the attached file servers
------------------------------------------------------------------------------
 Syntax

     NNETSLIST() --> cServerList

     Netware: 2.2 and 3.11

 Returns

     NNETSLIST() returns the names of all the attached servers.

 Description

     NOVELL NET SERVER LIST
     This function allows you to determine the names of all the servers
     attached through the station.  The character string that is returned
     contains all the server names separated by a CR/LF.  Each of the servers
     that are returned can be redirected as the default server using
     NNETSETSRV().

 Example

     Determine the names of all attached servers:

     cSList  :=  NNETSLIST()
     TOKENINIT(@cSList, CHR(10)+CHR(13))
     DO WHILE .NOT. TOKENEND()
        cServer  :=  TOKENNEXT(cSList)
        ? cServer
     ENDDO

See Also: NNETSETSRV()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson