home *** CD-ROM | disk | FTP | other *** search
/ HomeWare 14 / HOMEWARE14.bin / bbsutils / lsru_21.arj / NULL.PPS < prev   
Text File  |  1993-07-14  |  3KB  |  55 lines

  1. ;┌──────────────┬────────────────────────────────────────────────────────────┐
  2. ;│              │                                                            │
  3. ;│ PROGRAM      │ NULL.PPE              *** RELEASED TO PUBLIC DOMAIN ***    │
  4. ;│              │                                                            │
  5. ;│ AUTHOR       │ MOONCROW                                                   │
  6. ;│              │ Mooncrow's Aeyrie BBS                                      │
  7. ;│              │ NODE#1: (206) 737-0244 [14.4 HST]                          │
  8. ;│              │ NODE#2: (206) 737-8944 [14.4 V32]                          │
  9. ;│              │ NODE#3: (206) 737-8950 [14.4 V32]                          │
  10. ;│              │ NODE#4: (206) PRI-VATE [16.8 D/S]                          │
  11. ;│              │                                                            │
  12. ;│ VERSION      │ 1.0                                                        │
  13. ;│              │                                                            │
  14. ;│ DESCRIPTION  │ A [PPE] program for PCBOARD 15.0 or higher.                │
  15. ;│              │ Stuffs the keyboard with a CHR(13) and exits.              │
  16. ;│              │                                                            │
  17. ;│ HOW TO USE   │ The intended use for this PPE is for it to be executed in  │
  18. ;│              │ PCBTEXT Record #260.  NULL.PPE was written to be used with │
  19. ;│              │ LSRU 2.0 or higher, but this PPE can be used in place of   │
  20. ;│              │ any PCBTEXT prompt to cause PCBOARD to think the question  │
  21. ;│              │ has already been answered.  Note: Record #260 is the one   │
  22. ;│              │ that prompts the caller for his last name.                 │
  23. ;│              │                                                            │
  24. ;│              │ Do NOT install NULL.PPE if you are only using LSRU to      │
  25. ;│              │ rotate your WELCOME screens.  NULL.PPE is designed for use │
  26. ;│              │ with the rotating LOGON screen setup of LSRU.              │
  27. ;│              │                                                            │
  28. ;│ HISTORY      │ See the attached LSRU.HIS file for a detailed history.     │
  29. ;│              │                                                            │
  30. ;└──────────────┴────────────────────────────────────────────────────────────┘
  31.  
  32. ;┌───────────────────────────────────────────────────────────────────────────┐
  33. ;│ Declare Variable Types                                                    │
  34. ;└───────────────────────────────────────────────────────────────────────────┘
  35.  
  36. STRING  CR
  37.  
  38. ;┌───────────────────────────────────────────────────────────────────────────┐
  39. ;│ Initialize the "Enter Key" variable                                       │
  40. ;└───────────────────────────────────────────────────────────────────────────┘
  41.  
  42. CR = CHR(13)
  43.  
  44. ;┌───────────────────────────────────────────────────────────────────────────┐
  45. ;│ Stuff the keyboard with a CHR(13)                                         │
  46. ;└───────────────────────────────────────────────────────────────────────────┘
  47.  
  48. KBDSTUFF CR
  49.  
  50. ;┌───────────────────────────────────────────────────────────────────────────┐
  51. ;│ EXITS PPE and returns control to PCBOARD                                  │
  52. ;└───────────────────────────────────────────────────────────────────────────┘
  53.  
  54. END
  55.