home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / modem / jbtutor1.zip / LESSON5D.TXT < prev    next >
Text File  |  1993-09-19  |  604b  |  26 lines

  1. LESSON 5 RECAP:
  2.  
  3.         Here's what the entire "login" routine might look like
  4. according to the flowchart:
  5.  
  6. {:LOGIN}
  7.      {CALO login,sendesc,Press <ESC> key}
  8.      {CALO login,send_cr,More?}
  9.      {LOOK first name?}  {SEND Jim|}
  10.      {LOOK last name?}   {SEND Bennett|}
  11.      {LOOK password?}    {SEND mypass}
  12. .
  13. .
  14. .
  15. {:SENDESC}
  16.      {SEND ^[} {RETU}
  17. {:SEND_CR}
  18.      {SEND |}  {RETU}
  19. ---------------------
  20.  
  21. I've chosen to use a "hard" LOOK for first name, last name, password
  22. because I _know_ that these prompts will _always_ be received from
  23. the BBS when I make a connection.
  24.  
  25. Jim
  26.