Yes . . . me either!
We insist on continuing to use commands from the past, which don't always work in all situations.
In this case, it was better to use newer and more efficient commands.
Suggestion on compiler warning or help:
Example:
Up to DF19.1 (Allowed):
String sBlock
Direct_Input channel 1 "BINARY: C:\Temp\NameFile.dbf"
If (SeqEof=False);
Read_Block channel 1 sBlock 3
From DF20 the above command is obsolete, use:
uchar [] ucBlock
Direct_Input channel 1 "BINARY: C:\Temp\NameFile.dbf"
If (SeqEof=False);
Read_Block channel 1 ucBlock -1
Regards,
Edgard