|
On 09/04/2008, David Turnidge <daveturnidge@xxxxxxxxx> wrote:
This code is from Martin Rowe's Progress Meter. How can I change thecode to
FREE?
D OnePercent S 11p 2
D P_Percent S 3p 0
D RcdsRead S 9p 0
D Remainder S 9p 0
/END-FREE
C RcdsRead DIV OnePercent P_Percent
C MVR Remainder
/FREE
I have read the postings on %DIV and %REM, and can't get away from the
integer requirement. Not sure what to do with OnePercent…
Dave
Hi Dave
You could drop the OnePercent altogether and use the total number of
records (NbrOfRcds in the original code) instead, and check that the
remainder is below 100, rather than = 0 (i.e. less than 1, and the
values are now 100 times bigger)
p_percent = %div((RcdsRead * 100) : NbrOfRcds);
remainder = %rem((RcdsRead * 100) : NbrOfRcds);
I tried just dropping the 11,2 to a 9,0 but the code hits 100%
slightly before the end of the file, rather than at the last record.
Slightly pedantic given that it's just supposed to be a visual
indication of what's going on, but I might as well try to make it
correct ;)
Regards, Martin
--
martin@xxxxxxxxxx AIM/Gaim: DBG400dotNet http://www.dbg400.net /"\
DBG/400 - AS/400 & iSeries Open Source/Free Software utilities \ /
Debian GNU/Linux | ASCII Ribbon Campaign against HTML mail & news X
TWiki - an Enterprise Collaboration Platform - http://twiki.org/ / \
--
This is the RPG programming on the AS400 / iSeries (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.
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.