Linker complain...

Started by Zlatko Vid, February 14, 2026, 08:26:12 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Zlatko Vid

Hi Charles
i have one crazy translation to o2
and after all fixing on  the end Linker complain about UDT array member
this:

for i = 1 to pCount
            IJ.Funcs[IJ.FuncCount].ParamNames = pNames
        next i
    end if


what might be that?

Charles Pegge

Hi Aurel,

I see an a surplus right bracket:

for i = 1 to pCount
            IJ.Funcs[IJ.FuncCount].ParamNames = pNames
        next i
    end if

corrected possibly:
for i = 1 to pCount
            IJ.Funcs[IJ.FuncCount.ParamNames = pNames
        next i
    end if


Zlatko Vid

Hi Charles

It looks that older version sc604 i used have problem with parser
or UDT ..because when i download lates from sourceForge print version 0.9
not complain about that
tnx!