home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / bbs / sutil044.zip / SAMPLES.ARJ / FREQ.Q-A < prev    next >
Text File  |  1992-12-16  |  959b  |  39 lines

  1. :A
  2. CLEARSCREEN
  3. DISPLAY "File Request System|"
  4. DISPLAY "───────────────────||"
  5. DISPLAY "This function is used to request files from other systems.|"
  6. DISPLAY "If you want a file on this system leave a message to the SysOp.||"
  7.  
  8. DISPLAY "To browse the nodelist type ? alone.  To quit enter a blank line.||"
  9.  
  10. DISPLAY "To request a file from another system type the network address|"
  11. DISPLAY "followed by a space, then the files you want, each separated by|"
  12. DISPLAY "an underscore.  For example, to request Telix.Zip and a files|"
  13. DISPLAY "list from 3:635/570, type the following:||"
  14.  
  15. DISPLAY "3:635/570 Telix.Zip_Files||"
  16.  
  17. DISPLAY "Enter your file request now or a blank line to abort.|"
  18. ASK 60 1
  19.  
  20. IF 1 = "?"
  21. GOTO B
  22. ENDIF
  23.  
  24. IF 1 = ""
  25. GOTO C
  26. ENDIF
  27.  
  28. OUTPUTANSWER "sutil freq PCK " 1
  29. DISPLAY "||Your request will be sent overnight and you should be able to|"
  30. DISPLAY "collect it tomorrow.|"
  31. GOTO C
  32.  
  33. :B
  34. DOMENUC 88
  35. GOTO A
  36.  
  37. :C
  38. QUIT
  39.