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



We made it a "Q" because it represented Ibm related items specifically
.... if you don't like Q ... use something else
.... the name QSYSCHG gets the point across
.... been using it for about 10 years, never a problem
.... our saves come out just fine (it gets backed up separately every day)

Everyone has their own way
... mine is working just fine
... and I would imagine yours is too

-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx
[mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of CRPence
Sent: Wednesday, April 28, 2010 1:01 PM
To: midrange-l@xxxxxxxxxxxx
Subject: Re: Client access printer emulation question

Terry Nonamaker wrote:
<<SNIP>>

We put things like this into a library called qsyschg
... then when major things come along
... we just have to run the cl that it is in

/* Chg STRPRTWTR CMD ... do not prompt to change forms when forms change
*/

CHGCMDDFT CMD(QSYS/STRPRTWTR) NEWDFT('formtype(*all +
*nomsg)')

/* Chg STRPRTWTR CMD ... do not prompt to align after forms change */

CHGCMDDFT CMD(QSYS/STRPRTWTR) NEWDFT('align(*file)')


FWiW: User created libraries should not begin with the letter Q.
Among potential issues that might arise, such a library would not
be included-in\saved-by a SAVLIB *ALLUSR request.

FWiW, I would combine those two requests into just one. I may be
about the only one in the world that would do so while including the
comments inline:

/* Chg STRPRTWTR CMD defaults ... */
CHGCMDDFT CMD(QSYS/STRPRTWTR) NEWDFT(' +
/* do not prompt to change forms when forms change */+
formtype(*all *nomsg) +
/* do not prompt to align after forms change */+
align(*file) ')

Others might choose to, instead of making the comments inline to
the request, do something like:

/* Chg STRPRTWTR CMD defaults ... */
/* FORMTYPE: no prompt on forms change */
/* ALIGN: no prompt on align after forms change */
CHGCMDDFT CMD(QSYS/STRPRTWTR) NEWDFT(' +
formtype(*all *nomsg) +
align(*file) ')

Regards, Chuck

As an Amazon Associate we earn from qualifying purchases.

This thread ...

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.