home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / scrmod.zip / PROMPT < prev    next >
Text File  |  1991-10-31  |  1KB  |  30 lines

  1. > text1 = 'This is the first prompt text string.'
  2. > text2 = '  This is the second prompt text string.'
  3. > text3 = '  This is the third prompt text string.'
  4. > text4 = '  This is the fourth prompt text string.'
  5. > text5 = '  This is the fifth prompt text string.'
  6. > text6 = '  This is the sixth prompt text string.'
  7. > text7 = '  This is the seventh prompt text string.'
  8. > title = 'PROMPT test dialog1 - ' + SESSIONNAME
  9. > prompt = text1
  10. > prompt (title,prompt)
  11. > title = 'PROMPT test dialog2 - ' + SESSIONNAME
  12. > prompt = text1 + text2
  13. > prompt (title,prompt)
  14. > title = 'PROMPT test dialog3 - ' + SESSIONNAME
  15. > prompt = text1 + text2 + text3
  16. > prompt (title,prompt)
  17. > title = 'PROMPT test dialog4 - ' + SESSIONNAME
  18. > prompt = text1 + text2 + text3 + text4
  19. > prompt (title,prompt)
  20. > title = 'PROMPT test dialog5 - ' + SESSIONNAME
  21. > prompt = text1 + text2 + text3 + text4 + text5
  22. > prompt (title,prompt)
  23. > title = 'PROMPT test dialog6 - ' + SESSIONNAME
  24. > prompt = text1 + text2 + text3 + text4 + text5 +text6
  25. > prompt (title,prompt)
  26. > title = 'PROMPT test dialog7 - ' + SESSIONNAME
  27. > prompt = text1 + text2 + text3 + text4 + text5 +text6 + text7
  28. > prompt (title,prompt)
  29. > end
  30.