• SysLoadFuncs does not work !!!

    From Arthur Duchemin@21:1/5 to All on Sat May 28 10:03:18 2022
    In a procedure REXX :
    When I execute : Call RxFuncAdd 'SysLoadFuncs','REXXUTIL','SysLoadFuncs'
    that's OK.
    But when I execute after : Call SysLoadFuncs
    I receive the message :(en francais !!!!!!!)
    'SYSLOADFUNCS' n’est pas reconnu en tant que commande interne
    ou externe, un programme exécutable ou un fichier de commandes.
    It mean SYLOADFUNCS is not recognise like internal commande !!!!!
    How can't I bypass this situation ???
    (Sorry my english is very poor !!!)

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Dennis Lee Bieber@21:1/5 to All on Sat May 28 15:01:09 2022
    On Sat, 28 May 2022 10:03:18 -0700 (PDT), Arthur Duchemin <[email protected]> declaimed the following:

    In a procedure REXX :
    When I execute : Call RxFuncAdd 'SysLoadFuncs','REXXUTIL','SysLoadFuncs' >that's OK.
    But when I execute after : Call SysLoadFuncs
    I receive the message :(en francais !!!!!!!)
    'SYSLOADFUNCS' n’est pas reconnu en tant que commande interne
    ou externe, un programme exécutable ou un fichier de commandes.
    It mean SYLOADFUNCS is not recognise like internal commande !!!!!
    How can't I bypass this situation ???
    (Sorry my english is very poor !!!)

    What OS, What REXX interpreter?

    From the Regina manual:
    """
    RXFUNCADD(externalname, library, internalname) - (SAA)
    Registers the internalname in library as an external function callable from with the current program by referencing externalname. library is a Rexx external function package in the format of shared library or dynamic link library (DLL). library and internalname are case-sensitive.
    """

    Note the last sentence above! CASE-SENSITIVE

    You specified an internalname of "SysLoadFuncs" which does NOT match the REXX default of upper casing unquoted strings/names "SYSLOADFUNCS".

    Try
    CALL 'SysLoadFuncs'
    OR
    CALL RXFUNCADD('SysLoadFuncs', 'REXXUTIL', 'SYSLOADFUNCS')


    --
    Wulfraed Dennis Lee Bieber AF6VN
    [email protected] http://wlfraed.microdiversity.freeddns.org/

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Arthur T.@21:1/5 to Arthur Duchemin on Sat May 28 14:57:58 2022
    In
    Message-ID:<[email protected]>,
    Arthur Duchemin <[email protected]> wrote:

    In a procedure REXX :
    When I execute : Call RxFuncAdd 'SysLoadFuncs','REXXUTIL','SysLoadFuncs' >that's OK.
    But when I execute after : Call SysLoadFuncs
    I receive the message :(en francais !!!!!!!)
    'SYSLOADFUNCS' n�est pas reconnu en tant que commande interne
    ou externe, un programme ex�cutable ou un fichier de commandes.
    It mean SYLOADFUNCS is not recognise like internal commande !!!!!
    How can't I bypass this situation ???
    (Sorry my english is very poor !!!)

    What REXX are you using? ooRexx? Regina? Reginald? Something else?

    If Regina, it matters whether you call it via command REXX or REGINA.

    --
    Arthur T. - ar23hur "at" pobox "dot" com

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Christian Chaintrier@21:1/5 to All on Fri Nov 4 09:05:45 2022
    Le samedi 28 mai 2022 à 20:57:38 UTC+2, Arthur T. a écrit :
    In
    Message-ID:<[email protected]>,
    Arthur Duchemin <[email protected]> wrote:

    In a procedure REXX :
    When I execute : Call RxFuncAdd 'SysLoadFuncs','REXXUTIL','SysLoadFuncs' >that's OK.
    But when I execute after : Call SysLoadFuncs
    I receive the message :(en francais !!!!!!!)
    'SYSLOADFUNCS' n’est pas reconnu en tant que commande interne
    ou externe, un programme exécutable ou un fichier de commandes.
    It mean SYLOADFUNCS is not recognise like internal commande !!!!!
    How can't I bypass this situation ???
    (Sorry my english is very poor !!!)
    What REXX are you using? ooRexx? Regina? Reginald? Something else?

    If Regina, it matters whether you call it via command REXX or REGINA.

    --
    Arthur T. - ar23hur "at" pobox "dot" com

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Christian Chaintrier@21:1/5 to All on Fri Nov 4 09:06:16 2022
    Le samedi 28 mai 2022 à 20:57:38 UTC+2, Arthur T. a écrit :
    In
    Message-ID:<[email protected]>,
    Arthur Duchemin <[email protected]> wrote:

    In a procedure REXX :
    When I execute : Call RxFuncAdd 'SysLoadFuncs','REXXUTIL','SysLoadFuncs' >that's OK.
    But when I execute after : Call SysLoadFuncs
    I receive the message :(en francais !!!!!!!)
    'SYSLOADFUNCS' n’est pas reconnu en tant que commande interne
    ou externe, un programme exécutable ou un fichier de commandes.
    It mean SYLOADFUNCS is not recognise like internal commande !!!!!
    How can't I bypass this situation ???
    (Sorry my english is very poor !!!)
    What REXX are you using? ooRexx? Regina? Reginald? Something else?

    If Regina, it matters whether you call it via command REXX or REGINA.

    --
    Arthur T. - ar23hur "at" pobox "dot" com

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)