M
Maarten Wiltink
[...]
By using enough temporary variables, mostly. You should by now have
seen all the errors before and know how to solve any of them. All
that can go wrong now is that you don't spot what exactly is wrong;
the solution to that is to split up the code until you can only make
once mistake at a time.
Groetjes,
Maarten Wiltink
A_RecordPtr: ^SomeRecordType;
i: uint32;
j: uint32;
pAuthDB: ^SomeOtherRecordType;
if (A_RecordPtr.SomeBoolFunc (TransposeByteOrder
(*(uint32*)&pAuthDB[j].DBID
)
)
)
How can I handle this without getting the dreaded
"Array Type Required" error?
By using enough temporary variables, mostly. You should by now have
seen all the errors before and know how to solve any of them. All
that can go wrong now is that you don't spot what exactly is wrong;
the solution to that is to split up the code until you can only make
once mistake at a time.
Groetjes,
Maarten Wiltink