home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / scrmod.zip / PROMPT.SCR < prev    next >
Text File  |  1992-02-12  |  1KB  |  32 lines

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