|
Don't use the cycle. Use the techniques you've already learned. Work with
service programs and procedures. The cycle was great when interfaces were
cards and printers. You have much better tools at your disposal.
On Thu, Apr 27, 2017 at 12:38 PM, James H. H. Lampert <
jamesl@xxxxxxxxxxxxxxxxx <javascript:;>> wrote:
The only thing I can think of to add is this:designate
DON'T BE AFRAID TO TAKE A RIDE ON "THE CYCLE."
Because of RPG's history (it's name means "Report Program Generator"),
it's designed to process entire files, and as such, every RPG program
(unless, in the more recent versions of RPG, you explicitly disable it)
runs inside an implicit "DO UNTIL *INLR = TRUE" loop, and if you
a file as the "Primary File," each iteration of that implicit do-loopwhen
begins with a read operation on that file, raising the "LR" indicator
the last record of the file is read.to
If you designate a Primary File, then The Cycle allows you to "ride"
through the file, processing each record in sequence, instead of having
"walk" through it.a
And if you don't designate a Primary File, then The Cycle can be used as
built-in event loop for an interactive program: all you need to do israise
the LR indicator whenever the user is ready to exit.to
If you don't have a use for The Cycle in a given program, then you need
either disable it explicitly, or else make sure LR gets raised.Cycle,
WHAT YOU DO NOT WANT TO DO IS IGNORE "THE CYCLE." If you ignore The
it will run over you.
--
JHHL
--
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.