home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / 123rexx.zip / REXXEMSG.CMD < prev    next >
OS/2 REXX Batch file  |  1991-10-21  |  2KB  |  23 lines

  1. /*****************************************************************************/
  2. /* Lotus 1-2-3 For OS/2 sample macro command.                                */
  3. /*                                                                           */
  4. /* {REXXRV "REXXEMSG.CMD",value}                                             */
  5. /*                                                                           */
  6. /* Display a 1-2-3 macro error message with 'value' as the text.             */
  7. /*                                                                           */
  8. /* {REXXRV "REXXEMSG.CMD",value}                                             */
  9. /*                                                                           */
  10. /* Writes any TRACE or SAY output to a log file named 'logFileName'.         */
  11. /*                                                                           */
  12. /* Copyright (c) 1991 Lotus Development Corporation.  This code is supplied  */
  13. /* on an 'as is' basis as an example only.  This code has only received      */
  14. /* informal testing by Lotus.  Permission is granted  to copy and modify     */
  15. /* this code to your heart's content.  No warrenties expressed or implied.   */
  16. /* Remember, your mileage may vary.  Let us know if you find support of REXX */
  17. /* by 1-2-3 useful.                                                          */
  18. /*****************************************************************************/
  19.  
  20. PARSE ARG messageText
  21. CALL Display123Error messageText
  22. RETURN
  23.