--- In [email protected], "forxtra" <forx...@...> wrote: > > Is there a restriction on user-defined function name? > > If function names start with "call", it seems to call a built-in call() > function instead of user function. > >
Its a bug in the parsing of the function call. If you want to keep the name,
old style call
....@callbyval("arb")
will work.
> ;-------------------------
> CallByVal("arb")
>
> Function CallByVal(s)
> Win.Debug(s)
> Quit
> ;-------------------------
>
> Thanks.
>
