Page 1 of 1

rexx to display entry message

PostPosted: Tue Mar 24, 2009 7:14 pm
by bens
i would like to know how to set up a message when logging into mainrframe??

Re: rexx to display entry message

PostPosted: Tue Mar 24, 2009 11:59 pm
by dick scherrer
Hello,

You need to more clearly explain what you are asking. . .

Showing an example of what you want would probably help. Use copy/paste and the "Code" tag to show what you want to present. Do not use "screenshots" as they only add clutter and are deleted.

Re: rexx to display entry message

PostPosted: Wed Apr 01, 2009 4:44 pm
by expat
Beware of changing a logon proc, it will almost certainly be used by many more people than just you.

Re: rexx to display entry message

PostPosted: Wed Apr 01, 2009 6:54 pm
by Bill Dennis
You can add broadcast messages (called Notices) that will display for all users at every logon. The msgs remain until you delete them. Users may have the option available to say "NoNotices" at logon.

Use the SEND command to SAVE the message as a notice.
SEND 'your greeting',ALL,SAVE


To display all notices and their slot number:
SEND LIST



Delete a notice by slot number:
SEND nnnn,DELETE