procedure setEncoding(e : Integer);
The function setEncoding() defines a default encoding which will be used when you get or set strings.
In Delphi there are only two possible values: 0 and 1 (ANSI and OEM).
begin
// your code
dbf.setEncoding(1);
// your code
end;