home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / lang / rexx / 1418 < prev    next >
Encoding:
Text File  |  1992-12-16  |  1.2 KB  |  34 lines

  1. Newsgroups: comp.lang.rexx
  2. Path: sparky!uunet!emba-news.uvm.edu!griffin!keck
  3. From: keck@griffin (Jay A Keck)
  4. Subject: rexx and os/2 1.3 vs 2.0
  5. Message-ID: <1992Dec17.041314.21859@uvm.edu>
  6. Keywords: rexx
  7. Sender: news@uvm.edu
  8. Organization: University of Vermont -- Division of EMBA Computer Facility
  9. Distribution: na
  10. Date: Thu, 17 Dec 1992 04:13:14 GMT
  11. Lines: 21
  12.  
  13.  
  14. Hi,
  15.   I wrote a rexx pgm under OS/2 2.0 using charout and pull functions to prompt
  16.   and accept input from user.  and it works great under 2.0, but under 1.3 it
  17.   behaves oddly.  instead of the cursor being at the end of the text written
  18.   out with charout() while pull() waits for user to hit enter key,  the cursor
  19.   skips a couple of lines, outputs a "?" and then waits for user to hit enter
  20.   key.  I vaguely remember from years ago that a ":" at the end of the prompt
  21.   text would get around this problem, but i tried that and it made no difference
  22.   Can anyone tell me how to fix this so it will run under 1.3 nicely?
  23.   (PS i also replaced charout with "say" and the same results occurred)
  24.   Below is an extract of one of my prompts from my pgm.
  25.  thanks,
  26.  Jay keck
  27.  
  28. /* */
  29. "@echo off"
  30. do queued(); pull .;end;
  31.   call charout "STDOUT:","is is this correct profile?(Y/N) ==> "
  32.   pull response
  33.  
  34.