home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / SAMPLES / TESTNET.PRG < prev    next >
Text File  |  1994-04-28  |  473b  |  20 lines

  1. #include "FiveWin.ch"
  2.  
  3. #define RESOURCETYPE_DISK   1
  4. #define RESOURCETYPE_PRINT  3
  5.  
  6. //----------------------------------------------------------------------------//
  7.  
  8. function Main()
  9.  
  10.    WNetBrowseDialog( 0,;           // hWnd parent of the Dialog
  11.                      0,;           // Drives Type
  12.                      "Test" )
  13.  
  14.    ? WNetGetUser()
  15.    ? WNetError()
  16.  
  17. return
  18.  
  19. //----------------------------------------------------------------------------//
  20.