Jump to content

Object REXX by Example: Difference between revisions

From EDM2
Created page with "image:ObjectRexxByExample.JPG ==Description== The book features: * 130 Program examples with almost 6,000 lines of code! * Real-world as well as "concept" examples. * Ex..."
 
Ak120 (talk | contribs)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[image:ObjectRexxByExample.JPG]]
[[image:ObjectRexxByExample.JPG|right]]
*Authors: [[Gwen L. Venesky]], [[Will Trosky]], [[John J. Urbaniak]]
*Publisher: Aviar 1996
*ISBN 0-9652329-0-5


==Description==
The book features:
The book features:
* 130 Program examples with almost 6,000 lines of code!
* 130 Program examples with almost 6,000 lines of code!
* Real-world as well as "concept" examples.
* Real-world as well as "concept" examples.
Line 10: Line 11:
* Output and line-by-line descriptions to help you understand Object Oriented Programming!
* Output and line-by-line descriptions to help you understand Object Oriented Programming!
* REXXLIB® examples.
* REXXLIB® examples.
==Authors==
* Gwen L. Veneskey
* Will Trosky
* John J. Urbaniak
==Information==
* Publisher: Aviar 1996
* ISBN 0-9652329-0-5
==Download==
* Coming soon


==Samples Errata==
==Samples Errata==
Two important notes about the book:
Two important notes about the book:
# On page four(4) we make an important note about wpsinst.cmd.
# On page four(4) we make an important note about wpsinst.cmd.
YOU MUST RUN WPSINST.CMD before our examples will work.
#:You must run WPSINST.CMD before our examples will work.
 
#:WPSINST.CMD is included with Object REXX and it installs required Workplace Shell definitions. You need run this program only once for each installation of Object REXX.
WPSINST.CMD is included with Object REXX and it installs required Workplace Shell definitions. You need run this program ONLY ONCE for each installation of Object REXX.
#:If you are having problems this may be the first place to look.
 
If you are having problems this may be the first place to look.
 
# On line 0065 of Stream01.CMD (page 222) we use the term VALUE instead of ITEM. Versions of Object REXX from DEVCON 9 SE and before require VALUE. Items from DEVCON 10 and after should use ITEM.
# On line 0065 of Stream01.CMD (page 222) we use the term VALUE instead of ITEM. Versions of Object REXX from DEVCON 9 SE and before require VALUE. Items from DEVCON 10 and after should use ITEM.
#:e.g.; for DEVCON 9 SE and before use: <tt>strmsupp~VALUE</tt>
#:e.g.; for DEVCON 10 and after use: <tt>strmsupp~ITEM</tt>


eg; for DEVCON 9 SE and before use:
==Links==
        strmsupp~VALUE
* [http://web.archive.org/web/19980212032415/http://www.oops-web.com:80/orxbyex/ www.oops-web.com/orxbyex/] (archived 1998)
 
eg; for DEVCON 10 and after use:
        strmsupp~ITEM


[[Category:Books]]
[[Category:Books]]

Latest revision as of 03:28, 7 November 2019

The book features:

  • 130 Program examples with almost 6,000 lines of code!
  • Real-world as well as "concept" examples.
  • Examples of EVERY built-in class and EVERY method!
  • Beginner to Advanced topics.
  • Output and line-by-line descriptions to help you understand Object Oriented Programming!
  • REXXLIB® examples.

Samples Errata

Two important notes about the book:

  1. On page four(4) we make an important note about wpsinst.cmd.
    You must run WPSINST.CMD before our examples will work.
    WPSINST.CMD is included with Object REXX and it installs required Workplace Shell definitions. You need run this program only once for each installation of Object REXX.
    If you are having problems this may be the first place to look.
  2. On line 0065 of Stream01.CMD (page 222) we use the term VALUE instead of ITEM. Versions of Object REXX from DEVCON 9 SE and before require VALUE. Items from DEVCON 10 and after should use ITEM.
    e.g.; for DEVCON 9 SE and before use: strmsupp~VALUE
    e.g.; for DEVCON 10 and after use: strmsupp~ITEM

Links