Interactive PowerBasic Forum

IT-Consultant: Charles Pegge => OxygenBasic Examples => Topic started by: Zlatko Vid on February 14, 2026, 08:26:12 PM

Title: Linker complain...
Post by: Zlatko Vid on February 14, 2026, 08:26:12 PM
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?
Title: Re: Linker complain...
Post by: Charles Pegge on February 14, 2026, 10:50:54 PM
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

Title: Re: Linker complain...
Post by: Zlatko Vid on February 15, 2026, 12:35:16 PM
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!