× 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.



You could still say :

If Parm1 = *OFF; 
  Blah, blah, blah
EndIf; 

If you so desired though... 

The following code 

 H DFTACTGRP(*NO)

 D myProc          PR

 D  parm                          4A   VALUE

 

  /free

   myProc(*on);

   myProc(*blanks);

   myProc('0000');

   myProc(*off);                                                        
   *inlr = *on;

   return;

  /end-free

 

 P myProc          B

 

 D myProc          PI

 D  parm                          4A   VALUE

 

  /free

   if parm = *on;

    dsply '*on';

   elseif parm=*off;

    dsply '*off';

   else;                      
    dsply 'other';            
   endif;                     
   return;                    
  /end-free                   
                              
 P myProc          E          

Results in :

DSPLY  *on  
DSPLY  other
DSPLY  *off 
DSPLY  *off

Cheers,
Stu

-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Bob Cozzi
Sent: Thursday 17 February 2005 00:24
To: 'RPG programming on the AS400 / iSeries'
Subject: RE: PASS *BLANK TO VARIABLE ?


LOL!
I actually discovered this by creating a procedure that accepts a
4-character text value and also allows *OFF/*ON ('0' or '1') to be
passed.
So I called it like this:
  Callp  myProc(*OFF)
And in the proc itself, I did this:

  If Parm1 = '0'
   Blah, blah, blah.
  Endif;
The problem is, PARM1 = '0000' not '0'
So the thing didn't work.


-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx]
On Behalf Of Joel Fritz
Sent: Wednesday, February 16, 2005 4:37 PM
To: RPG programming on the AS400 / iSeries
Subject: RE: PASS *BLANK TO VARIABLE ?


It's interesting to know, but would you want your kids to be exposed to
that sort of coding? <g>



-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Bob Cozzi
Sent: Wednesday, February 16, 2005 2:29 PM
To: 'RPG programming on the AS400 / iSeries'
Subject: RE: PASS *BLANK TO VARIABLE ?

*BLANKS *BLANK
*ZERO *ZEROS
Are all supported.
On a related note, I discovered recently that *ON and *OFF work like
*ALL'1'
and *ALL'0' respectively.
So if you have a 4-position character field and do this:

 Eval  myfield = *OFF
The field now contains '0000'

-Bob




*****************************
NOTICE:
All e-mail sent to or from this e-mail address will be received or
otherwise
recorded by
The Sharper Image corporate e-mail system and is subject to archival,
monitoring,
and review by and/or disclosure to Sharper Image security and other
management.
This message is intended only for the use of the addressee and may
contain
information
that is privileged and confidential.

The contents of this message may contain personal views which are not
the
views of The Sharper Image.
If you are not the intended recipient, dissemination of this
communication
is prohibited.
*****************************

-- 
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.




-- 
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 thread ...


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.