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

  1. Path: sparky!uunet!gatech!destroyer!cs.ubc.ca!news.UVic.CA!amusers.UUCP!Rick_Lang
  2. From: Rick_Lang@amusers.UUCP (Rick Lang)
  3. Newsgroups: comp.sys.amiga.hardware
  4. Subject: Re: WB2.1 & Rexxmast
  5. Distribution: world
  6. Message-ID: <Rick_Lang.00tv@amusers.UUCP>
  7. Date: 29 Dec 92 20:43:03 PST
  8. Organization: AmUsers - The Amiga Users Group of Victoria BC
  9. Lines: 44
  10.  
  11. In a message dated Tue 29 Dec 92  2:47, ross@cbmvax.commodore.com (Ross
  12. Hippely - Manuals) wrote:
  13.  
  14.  RH-M> Are you saying that, to get ARexx working properly, something other
  15.  RH-M> than
  16.  RH-M> (or in addition to) placing RexxMast in S:User-startup or WBStartup
  17. is
  18.  RH-M> necessary?  If so, could you give some examples?
  19.  
  20. I execute rexx scripts in my user-startup, so I moved the rexxmast to that
  21. file; if I put rexxmast in WBStartup as has been suggested, it would start
  22. too late.  For example, this sets up my rexx libraries:
  23.  
  24. /*startrx - adds additional libraries to REXX environment */
  25.  
  26. lib.0 = 9
  27. lib.1 = 'rexxsupport.library'
  28. lib.2 = 'rexxarplib.library'
  29. lib.3 = 'rexxextra.library'
  30. lib.4 = 'rexxhost.library'
  31. lib.5 = 'rexxmathlib.library'
  32. lib.6 = 'rexxserdev.library'
  33. lib.7 = 'translib.library
  34. lib.8 = 'screenshare.library'
  35. lib.9 = 'mathieeedoubbas.library'
  36.  
  37. /* trace ?r */
  38. do i=1 to lib.0
  39.   result = addlib(lib.i,0,-30,0)
  40.   if result = 0 then say lib.i "not added
  41. end
  42. exit
  43.  
  44.  
  45.  -- AEd V1.37/Eval
  46.  
  47. -- Via DLG Pro v0.995
  48.  
  49. -- Rick Lang
  50.    Editor of the AmUser News - the Victoria Amiga User Group Newsletter
  51.  
  52. E-mail replies use rlang@bcsc02.gov.bc.ca - not the address in this
  53. message!
  54.  
  55.