• Looking for phone (or otherwise) support

    From Charlie-Boo@21:1/5 to All on Mon Jun 6 12:44:57 2022
    IRIS won't start
    "local license key not found"
    Licensed to: [blank]

    Charlie

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Matthew R. Wilson@21:1/5 to Charlie-Boo on Mon Jun 6 22:23:35 2022
    On 2022-06-06, Charlie-Boo <shymathguy@gmail.com> wrote:
    IRIS won't start
    "local license key not found"
    Licensed to: [blank]

    https://www.intersystems.com/support

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Charlie-Boo@21:1/5 to Matthew R. Wilson on Wed Jun 8 06:37:38 2022
    On Monday, June 6, 2022 at 6:23:37 PM UTC-4, Matthew R. Wilson wrote:
    On 2022-06-06, Charlie-Boo <shyma...@gmail.com> wrote:
    IRIS won't start
    "local license key not found"
    Licensed to: [blank]
    https://www.intersystems.com/support
    Hi Matt,

    Freedom isn’t free – nor is InterSystems support anymore.

    I got it to work and now I’m trying to connect to Studio:

    C:\InterSystems\IRIS\bin\Cstudio.exe

    Select a server on the list:
    IRIS (localhost[51774])
    OK

    Log on to IRIS
    Username: _system
    Password: _____
    I tried:
    xxx
    system
    _system
    mgr

    Thanks,
    Charlie

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Charlie-Boo@21:1/5 to Charlie-Boo on Wed Jun 8 07:16:52 2022
    On Wednesday, June 8, 2022 at 9:37:40 AM UTC-4, Charlie-Boo wrote:
    On Monday, June 6, 2022 at 6:23:37 PM UTC-4, Matthew R. Wilson wrote:
    On 2022-06-06, Charlie-Boo <shyma...@gmail.com> wrote:
    IRIS won't start
    "local license key not found"
    Licensed to: [blank]
    https://www.intersystems.com/support
    Hi Matt,

    Freedom isn’t free – nor is InterSystems support anymore.

    I got it to work and now I’m trying to connect to Studio:

    C:\InterSystems\IRIS\bin\Cstudio.exe

    Select a server on the list:
    IRIS (localhost[51774])
    OK

    Log on to IRIS
    Username: _system
    Password: _____
    I tried:
    xxx
    system
    _system
    mgr

    Thanks,
    Charlie
    I found it in the documentation.
    You have to enter in a password but the documentation tells you the password. Cool.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Charlie-Boo@21:1/5 to Matthew R. Wilson on Sun Jun 12 11:14:47 2022
    On Monday, June 6, 2022 at 6:23:37 PM UTC-4, Matthew R. Wilson wrote:
    On 2022-06-06, Charlie-Boo <shyma...@gmail.com> wrote:
    IRIS won't start
    "local license key not found"
    Licensed to: [blank]
    https://www.intersystems.com/support

    How do I write a subroutine that returns an array? I see only QUIT SINGLEVALUE

    Charlie

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From retired developer@21:1/5 to Charlie-Boo on Mon Jun 13 00:45:17 2022
    On 12.06.22 20:14, Charlie-Boo wrote:


    How do I write a subroutine that returns an array? I see only QUIT SINGLEVALUE



    test ; Testroutine
    k arr
    s arr(1)=123
    s arr(3)=333
    w "Sum ",$$doubleSum(.arr),! ; <-- notice the dot in front of arr
    w arr(1),!
    w arr(3),!
    q

    doubleSum(par)
    s par(1)=par(1)*2
    s par(3)=par(3)*2
    q par(1)+par(3)


    A dot in front of an argument(variable) means it's a Call-By-Reference,
    without an dot it's a Call-By-Value.

    To pass an array to a function (or subroutine) or to get an array back
    from a function (or subroutine), you have to use Call-By-Reference.

    Hth

    --
    An old Windows has old security holes.
    A new Windows has new security holes.
    Another OS has other security holes.
    For safety you must care yourself.

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