Re: Bug with V17?

2018-11-13 Thread Uist Macdonald via 4D_Tech
That was it. I pulled in object code from V16 and forgot about this. Many thanks Uist On 13/11/2018 17:01, Dennis, Neil via 4D_Tech wrote: c.push(obj) On V17 it gives an error ":=" expected. The 'push' is not syntactically highlighted like V16R6. Did you turn on dot notation in the

RE: Bug with V17?

2018-11-13 Thread Dennis, Neil via 4D_Tech
>c.push(obj) >On V17 it gives an error ":=" expected. >The 'push' is not syntactically highlighted like V16R6. Did you turn on dot notation in the compatibility preference? Neil Privacy Disclaimer: This message contains confidential information and is intended only for the named

Bug with V17?

2018-11-13 Thread Uist Macdonald via 4D_Tech
I have this code which works on V16R6 but not on V17. C_COLLECTION(c) c:=New collection C_OBJECT(obj) obj:=New object("name";"jim") c.push(obj) On V17 it gives an error ":=" expected. The 'push' is not syntactically highlighted like V16R6. Any thoughts? Uist --