|
-----Message d'origine-----
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] De la part de Charles Wilt
If you specified VALUE on myDossier....the calling procedure
will never see the value from GetMyDossier.
VALUE & CONST both mean a parm is input only and is protected
from being updated.
Options(*VARSIZE) would work as another suggested....but if
you use it, you should also pass another parm that indicates
the size of myDossier. That way if GetMyDossier expects at
least 7 bytes, if somebody comes along and only gives you 5
bytes, you can deal with the issue. Otherwise you'd be
corrupting memory.
The easiest way to deal with this is to pass the dossier back
as the RETURNED VALUE from GetMyDossier
evalr DisplayField_myDossier = GetMyDossier ( inputParm );
D GetMyDossier PR LIKE ( Ref_myDossier )
D inputParm LIKE ( Ref_InPutParm ) CONST
Of course you lose the Boolean returned value, but depending
on how you are using it, there are other options.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 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.