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