home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / de / comp / sys / amiga / misc / 7009 < prev    next >
Encoding:
Internet Message Format  |  1992-12-29  |  1.5 KB

  1. Path: sparky!uunet!math.fu-berlin.de!uniol!caty!imart.franken.de!incubus.sub.org!heap!michael
  2. From: michael@heap.incubus.sub.org (Michael Herold)
  3. Newsgroups: de.comp.sys.amiga.misc
  4. Subject: Re: AREXX - Groesse von Variablen
  5. Message-ID: <oEIcs*4a0@heap.incubus.sub.org>
  6. Date: Mon, 28 Dec 1992 13:03:04 GMT
  7. Reply-To: michael@heap.incubus.sub.org
  8. References: <6058.ANN@chumly.ka.sub.org>
  9. Organization: None
  10. X-Newsreader: Arn V1.00
  11. Lines: 28
  12.  
  13. In article <6058.ANN@chumly.ka.sub.org>, Walter Mildenberger writes:
  14.  
  15. > /* Schubbidu */
  16. > parse arg cmdline
  17. > Address 'rexx_ced'
  18. > Options Results
  19. > CedToFront
  20. > status 60
  21. > if result ~= "RESULT" then
  22. >     say result
  23. > else
  24. >     Okay1 "Kein Block definiert!"
  25.  
  26. RESULT ist (in diesem Fall) keine Variable von Arexx sondern von CygnusEd
  27. selbst. Folgendes Programm habe ich bei mir Zuhause getestet und es macht
  28. das, was du haben willst:
  29.  
  30.  : Options Result; Address 'rexx_ced'; CedToFront; Status 60; Text=RESULT
  31.  : If Text="" | Text=0 then Do; Okay1 "Kein Buffer vorhanden."; Exit; End
  32.  
  33. Damit hast du deinen Buffer in der Variable 'Text' vollstaendig vorhanden.
  34.                                                  ,,,
  35.                                                 (o o)
  36. +------------------+------------------------oOO--(_)--OOo---+
  37. | Michael Herold   |                                        |
  38. | Tel: 0931-781948 | UUCP : michael@heap.incubus.sub.org    |
  39. | West-Germany     | ZNET : michael%heap.incubus@aworld.zer |
  40. +------------------+----------------------------------------+
  41.