× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



+1
I still use Notepad++ as my printer layout tool. - Even with external spool
files.

-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Roger
Harman
Sent: Saturday, June 4, 2022 5:19 PM
To: RPG programming on IBM i <rpg400-l@xxxxxxxxxxxxxxxxxx>
Subject: RE: Space between fields in printer file

When not using PRTF's and RDi, I did all my O-Spec layout work by using
NotePad++.

X's and 9's - Worked great!

Item # Description List Price
X--------XX---X X--------X X--------X X--------XX---X 9,999,999.99






-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Vern
Hamberg via RPG400-L
Sent: Saturday, June 4, 2022 1:18 PM
To: rpg400-l@xxxxxxxxxxxxxxxxxx
Cc: Vern Hamberg <vhamberg@xxxxxxxxxxxxxxx>
Subject: Re: Space between fields in printer file

Hi Jerry

For program-described, the position you specify is the last position of the
value - if you continue with O-specs, I suggest you make a drawing of the
result on graph paper, maybe - there used to be sheets for that.

Now I do suggest you move to a PRTF - you can design those with RLU or in
RDi, and have much easier control of what it will look like.

What you see as truncation is probably actually overwriting.

HTH
Vern

On 6/4/2022 3:54 AM, jerry ven wrote:
it seems field started missing one decimal position both in it's
details records as well as at the summary(total -footer portion)
record , the moment i increased the length of the adjacent field, if i
do not increase the length of the adjacent field then both at the
detail record level and at the footer level it shows correctly the decimal
positions.

Also since it's being a program described printer file having O Specs
in it so not sure how to increase the length of the desired field
without getting truncated the adjacent field( which currently gets
truncated when i increase the length of the adjacent field)


Thanks

On Sat, 4 Jun 2022 at 02:18, Glenn Gundermann
<glenn.gundermann@xxxxxxxxx>
wrote:

I'm still not clear if the field is missing the data or if the field
is being overlayed in the printer file position.First of all, a
printer file does not use end position. Only the old O-soecs use
them. Printer files use starting position.Secondly, use +2 or
whatever spacing you want for all fields but the first one on each
line.Use the Report Layout Utility to see the output on screen while
you are designing.Yours truly,Glenn
Gundermannglenn.gundermann@xxxxxxxxx(416) 317-3144
-------- Original message --------From: jerry ven
<jerryven95@xxxxxxxxx>
Date: 2022-06-03 4:32 p.m. (GMT-05:00) To: RPG programming on IBM i
< rpg400-l@xxxxxxxxxxxxxxxxxx> Subject: Re: Space between fields in
printer file Hi,Just to explain it in more detail:-fields headings names
are
different from their corresponding total names.example :- headings :-
fld1 fld2 fld3 For Total-
Tfld1 Tfld2 TFld3So likewise their are multiple such field
headings and multiple differentTotal headings corresponding to each
fields here in this printer file sothe problem is found when one of
these field for example here let's say iincrease the length of Tfld3
so because this fld2's detail part ismissing one decimal position
as well as it's footer part(Total of field2Tfld2) is also missing
one decimal position, i tried shifting end positionfor both fld3 and
fld2 but it made no impact , i am still missing onedecimal positon
here for both in detail records of fld2 also in total offield2
(Tfld2-footer part).ThanksOn Sat, 4 Jun 2022 at 01:27, jerry ven
<jerryven95@xxxxxxxxx> wrote:> sorry just to correct field names for
total corresponding to each of the> field headings but i need the sum
of each field under each field at the> bottom at footer field names
corresponding to each of these heading field> names.>>> Thanks>> On
Sat, 4 Jun 2022 at 01:21, jerry ven <jerryven95@xxxxxxxxx> wrote:>>>
field names are the same and the total of these fields need to be put
in>> the same line where earlier total was being displayed( before i
increased>> the length of one of these fields) but had to increase
one field length>> that caused all this disturbance.>> So how to
adjust this in the same summary(footer line) line where the>> total
of all the columns be seen in the same line corresponding to each>>
column heading( field heading) in this program defined printer
file?>>>>>> Thanks>>>> On Sat, 4 Jun 2022 at 01:13, Jeff Crosby
<jlcrosby@xxxxxxxxxxxxxxxx>>> wrote:>>>>> Same field name on the
total line?>>>>>> If not, and the total line fields are larger, make
2 total>>> lines, alternating the fields. Put odd numbered fields on
one line and>>> even numbered fields on the other line.>>>>>> On Fri,
Jun 3, 2022 at 3:39 PM jerry ven <jerryven95@xxxxxxxxx> wrote:>>>>>>
I just increased the length of one field in existing printer file
but>>> it>>> > caused disturbance in other field and this disturbed
field has>>>
started>>> > showing one less decimal position.>>> > but this being a
program described printer file, how could this 'use>>> +2 to>>> >
specify 2 spaces' be used in existing program described printer
file?>>> >>>> >>>> >
Thanks>>> >>>> > On Sat, 4 Jun 2022 at 00:56, Glenn Gundermann <>>>
glenn.gundermann@xxxxxxxxx>>>> > wrote:>>> >>>> > > Instead of using
absolute position, use relative position and use +2>>> to>>> > >
specify 2 spaces.Yours truly,Glenn>>>
Gundermannglenn.gundermann@xxxxxxxxx>>> > (416)>>> > > 317-3144-->>> > >
-------- Original message --------From:
jerry ven <>>> jerryven95@xxxxxxxxx>>>> > > Date: 2022-06-03 3:07 p.m.
(GMT-05:00) To: RPG programming on IBM>>> i <>>> > >
rpg400-l@xxxxxxxxxxxxxxxxxx> Subject: Space between fields in>>>
printer>>> > > file Hi,I am trying to write records in printer file
printer>>> > > but the
problem>>> is>>> > > happeningat summary part where total of the
problem>>> is>>> > > fields is
overlapping>>> because>>> > > of thatone field is missing one
overlapping>>> because>>> > > decimal
place ,however i have kept>>> > enough>>> > > endposition space to
adjust each field in it still seems one field is>>> > > missingone
decimal place also i want to have some space between the>>> total>>>
of thesetwo fields but despite giving proper field length
positions>>> in O>>> > > spec asit's a program defined printer file
in both header and footer>>> > part ,>>> > > when icall this RPGLE
program i get this issue.Any idea how can>>>
proper>>> > > space between the fields at total (footer) part ofthis
printer file>>> be>>> > > maintained so that i don't miss( i doubt it
could bedue to the>>> > overlapping>>> > > of next adjacent field)
decimal position for one ofit's>>> fields.Thanks-->>> > > This is the
RPG programming on IBM i (RPG400-L) mailing listTo post a>>> > > message
email:
RPG400-L@lists.midrange.comTo subscribe,>>> unsubscribe, or>>> > >
change list options,visit:>>> > >
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Flis
ts.midrange.com%2Fmailman%2Flistinfo%2Frpg400-lor&amp;data=05%7C01%7C
%7Cdd65caf0f10d4cdc66bc08da46676004%7C84df9e7fe9f640afb435aaaaaaaaaaa
a%7C1%7C0%7C637899707050798627%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLj
AwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&
amp;sdata=fkl2hrvO8ZTAvDtZb%2BV16I7g5KP%2BakRdQ3f8T23w0LM%3D&amp;rese
rved=0 email:>>> > > RPG400-L-request@lists.midrange.comBefore
posting, please take a>>>
moment>>> > > to review the archivesat>>>
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Farc
hive.midrange.com%2Frpg400-l.Please&amp;data=05%7C01%7C%7Cdd65caf0f10
d4cdc66bc08da46676004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C63
7899707050798627%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoi
V2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=JTu4
kfMWxqJUr6Ll7AmNQACTTDcWlkbT99oI1HidiHE%3D&amp;reserved=0>>> > >
contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related>>>
questions.Help support midrange.com by shopping at amazon.com
with>>>
our>>> > > affiliate link:
our>>> > > https://nam12.safelinks.protection.outlook.com/?url=https%
our>>> > > 3A%2F%2Famazon.midrange.com%2F&amp;data=05%7C01%7C%7Cdd65c
our>>> > > af0f10d4cdc66bc08da46676004%7C84df9e7fe9f640afb435aaaaaaaa
our>>> > > aaaa%7C1%7C0%7C637899707050798627%7CUnknown%7CTWFpbGZsb3d8
our>>> > > eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVC
our>>> > > I6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=8Hj5RjdLxfFSfaa3SW697nI
our>>> > > NRjzmqj%2B%2FY%2FoamB0EFJA%3D&amp;reserved=0>>> > > -->>>
our>>> > > > >
This is the RPG programming on IBM i (RPG400-L) mailing list>>> > >
To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx>>> > > To
subscribe, unsubscribe, or change list options,>>> > > visit:

https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.midr
ange.com%2Fmailman%2Flistinfo%2Frpg400-l&amp;data=05%7C01%7C%7Cdd65caf0f10d4
cdc66bc08da46676004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C63789970705
0798627%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6
Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=KhI2G003REWjBf%2BIQVsHNaRWA
OQDgItHG7iK%2B2y8Zdg%3D&amp;reserved=0>>> > > or email:
RPG400-L-request@xxxxxxxxxxxxxxxxxx>>> > > Before posting, please
take a moment to review the archives>>> > > at
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Farc
hive.midrange.com%2Frpg400-l&amp;data=05%7C01%7C%7Cdd65caf0f10d4cdc66
bc08da46676004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637899707
050798627%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzI
iLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=6RrhBqZKjbX
OBoZrJYqDWNEzLDwJg16eFCnEJtNVjXM%3D&amp;reserved=0.>>> > >>>> > >
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription>>>
related>>> > > questions.>>> > >>>> > > Help support midrange.com by
shopping at amazon.com with our>>> affiliate>>> > > link:
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Fama
zon.midrange.com%2F&amp;data=05%7C01%7C%7Cdd65caf0f10d4cdc66bc08da466
76004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637899707050798627
%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6
Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=8Hj5RjdLxfFSfaa3SW69
7nINRjzmqj%2B%2FY%2FoamB0EFJA%3D&amp;reserved=0>>>
-->>> > This is the RPG programming on IBM i (RPG400-L) mailing
list>>> > To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx>>> >
list>>> > To
subscribe, unsubscribe, or change list options,>>> > visit:

https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.midr
ange.com%2Fmailman%2Flistinfo%2Frpg400-l&amp;data=05%7C01%7C%7Cdd65caf0f10d4
cdc66bc08da46676004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C63789970705
0798627%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6
Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=KhI2G003REWjBf%2BIQVsHNaRWA
OQDgItHG7iK%2B2y8Zdg%3D&amp;reserved=0>>> > or email:
RPG400-L-request@xxxxxxxxxxxxxxxxxx>>> > Before posting, please take
a moment to review the archives>>> > at
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Farc
hive.midrange.com%2Frpg400-l&amp;data=05%7C01%7C%7Cdd65caf0f10d4cdc66
bc08da46676004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637899707
050798627%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzI
iLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=6RrhBqZKjbX
OBoZrJYqDWNEzLDwJg16eFCnEJtNVjXM%3D&amp;reserved=0.>>> >>>> > Please
contact support@xxxxxxxxxxxxxxxxxxxx for any subscription>>>
related>>> > questions.>>> >>>> > Help support midrange.com by
shopping at amazon.com with our affiliate>>> > link:
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Fama
zon.midrange.com%2F&amp;data=05%7C01%7C%7Cdd65caf0f10d4cdc66bc08da466
76004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637899707050798627
%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6
Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=8Hj5RjdLxfFSfaa3SW69
7nINRjzmqj%2B%2FY%2FoamB0EFJA%3D&amp;reserved=0>>> >>>>>>>>>>
-->>>>>>>>> *Jeff Crosby*>>> Senior Vice President>>> UniPro
FoodService/Dilgard>>> P.O. Box 13369>>> Ft. Wayne, IN 46868-3369>>>
260-422-7531>>> direct.dilgardfoods.com>>>>>> The opinions expressed
260-422-7531>>> are
my own and not necessarily the opinion of my>>> company. Unless I
say so.>>> -->>> This is the RPG programming on IBM i (RPG400-L)
mailing
list>>> To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx>>> To
subscribe, unsubscribe, or change list options,>>> visit:

https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.midr
ange.com%2Fmailman%2Flistinfo%2Frpg400-l&amp;data=05%7C01%7C%7Cdd65caf0f10d4
cdc66bc08da46676004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C63789970705
0798627%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6
Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=KhI2G003REWjBf%2BIQVsHNaRWA
OQDgItHG7iK%2B2y8Zdg%3D&amp;reserved=0>>> or email:
RPG400-L-request@xxxxxxxxxxxxxxxxxx>>> Before posting, please take a
moment to review the archives>>> at
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Farc
hive.midrange.com%2Frpg400-l&amp;data=05%7C01%7C%7Cdd65caf0f10d4cdc66
bc08da46676004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637899707
050798627%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzI
iLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=6RrhBqZKjbX
OBoZrJYqDWNEzLDwJg16eFCnEJtNVjXM%3D&amp;reserved=0.>>>>>>
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription>>>
related questions.>>>>>> Help support midrange.com by shopping at
amazon.com with our affiliate>>> link:
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Fama
zon.midrange.com%2F&amp;data=05%7C01%7C%7Cdd65caf0f10d4cdc66bc08da466
76004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637899707050798627
%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6
Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=8Hj5RjdLxfFSfaa3SW69
7nINRjzmqj%2B%2FY%2FoamB0EFJA%3D&amp;reserved=0>>>>>--
This is the RPG programming on IBM i (RPG400-L) mailing listTo post a
message email: RPG400-L@lists.midrange.comTo subscribe, unsubscribe,
or change list options,visit:

https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.midr
ange.com%2Fmailman%2Flistinfo%2Frpg400-lor&amp;data=05%7C01%7C%7Cdd65caf0f10
d4cdc66bc08da46676004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637899707
050798627%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTi
I6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=fkl2hrvO8ZTAvDtZb%2BV16I7
g5KP%2BakRdQ3f8T23w0LM%3D&amp;reserved=0 email:
RPG400-L-request@lists.midrange.comBefore posting, please take a
moment to review the archivesat
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Farc
hive.midrange.com%2Frpg400-l.Please&amp;data=05%7C01%7C%7Cdd65caf0f10
d4cdc66bc08da46676004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C63
7899707050798627%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoi
V2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=JTu4
kfMWxqJUr6Ll7AmNQACTTDcWlkbT99oI1HidiHE%3D&amp;reserved=0
contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.Help support midrange.com by shopping at amazon.com with
our affiliate link:
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Fama
zon.midrange.com%2F&amp;data=05%7C01%7C%7Cdd65caf0f10d4cdc66bc08da466
76004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637899707050798627
%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6
Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=8Hj5RjdLxfFSfaa3SW69
7nINRjzmqj%2B%2FY%2FoamB0EFJA%3D&amp;reserved=0
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post
a message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit:
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Flis
ts.midrange.com%2Fmailman%2Flistinfo%2Frpg400-l&amp;data=05%7C01%7C%7
Cdd65caf0f10d4cdc66bc08da46676004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%
7C1%7C0%7C637899707050798627%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAw
MDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&am
p;sdata=KhI2G003REWjBf%2BIQVsHNaRWAOQDgItHG7iK%2B2y8Zdg%3D&amp;reserv
ed=0 or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at

https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Farchive.mi
drange.com%2Frpg400-l&amp;data=05%7C01%7C%7Cdd65caf0f10d4cdc66bc08da46676004
%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637899707050798627%7CUnknown%7
CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0
%3D%7C3000%7C%7C%7C&amp;sdata=6RrhBqZKjbXOBoZrJYqDWNEzLDwJg16eFCnEJtNVjXM%3D
&amp;reserved=0.

Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription
related questions.

Help support midrange.com by shopping at amazon.com with our
affiliate
link:
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Fama
zon.midrange.com%2F&amp;data=05%7C01%7C%7Cdd65caf0f10d4cdc66bc08da466
76004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637899707050798627
%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6
Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=8Hj5RjdLxfFSfaa3SW69
7nINRjzmqj%2B%2FY%2FoamB0EFJA%3D&amp;reserved=0


--
This is the RPG programming on IBM i (RPG400-L) mailing list To post a
message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or
change list options,
visit:
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.midr
ange.com%2Fmailman%2Flistinfo%2Frpg400-l&amp;data=05%7C01%7C%7Cdd65caf0f10d4
cdc66bc08da46676004%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C63789970705
0798627%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6
Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=KhI2G003REWjBf%2BIQVsHNaRWA
OQDgItHG7iK%2B2y8Zdg%3D&amp;reserved=0
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Farchive.mi
drange.com%2Frpg400-l&amp;data=05%7C01%7C%7Cdd65caf0f10d4cdc66bc08da46676004
%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637899707050798627%7CUnknown%7
CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0
%3D%7C3000%7C%7C%7C&amp;sdata=6RrhBqZKjbXOBoZrJYqDWNEzLDwJg16eFCnEJtNVjXM%3D
&amp;reserved=0.

Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.

Help support midrange.com by shopping at amazon.com with our affiliate link:
https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Famazon.mid
range.com%2F&amp;data=05%7C01%7C%7Cdd65caf0f10d4cdc66bc08da46676004%7C84df9e
7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637899707050798627%7CUnknown%7CTWFpbGZs
b3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C300
0%7C%7C%7C&amp;sdata=8Hj5RjdLxfFSfaa3SW697nINRjzmqj%2B%2FY%2FoamB0EFJA%3D&am
p;reserved=0
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post a
message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or
change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/rpg400-l.

Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.

Help support midrange.com by shopping at amazon.com with our affiliate link:
https://amazon.midrange.com


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.