home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1997 October / DPCB1097.iso / internet / CSI303UK / SCRIPTS.LIB / POSSERVE.SCR < prev    next >
Text File  |  1997-01-30  |  957b  |  51 lines

  1. !
  2. !  Copyright (c) 1997
  3. !  by CompuServe Incorporated, Columbus, Ohio
  4. !
  5. !  The information in this software is subject to change without
  6. !  notice and should not be construed as a commitment by CompuServe.
  7. !
  8. !  Pos-Serve:
  9. !       Connect to Pos-Serve
  10. !       Success:  returns %Success
  11. !       Failure:  saves error msg in %FailureMsg and returns %Failure
  12. !
  13. !+V
  14. ! "4.0"
  15. !-V
  16.  
  17. show "Connecting to HANJIN-NET";
  18.  
  19. Tries = 5;
  20. on cancel goto Return_Cancel;
  21.  
  22. Wait_PosServe:
  23.     wait until 5;
  24.     show "Sending HANJIN-NET address...";
  25.     send "cns" & %CR;
  26.     goto Wait2_PosServe;
  27.  
  28.  
  29. Wait2_PosServe:
  30.  
  31.     if Tries = 0 goto PosServe_Failure;
  32.     Tries = Tries - 1;
  33.  
  34.     wait
  35.         "Name:"         goto Return_Success,
  36.         %mdm_Failure    goto PosServe_Failure
  37.     until 80;
  38.  
  39.     goto Wait_PosServe;
  40.  
  41.  
  42. PosServe_Failure:
  43.     define %FailureMsg = "HANJIN-NET not responding";
  44.     exit %Failure;
  45.  
  46. Return_Cancel:
  47.     exit %Cancel;
  48.  
  49. Return_Success:
  50.     exit %Success;
  51.