You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are are only two fields in this table. The start position of the record data is 96.
When the program read the field header, It read one more character. And then start reading the records at 97.
I have made this change on the DBFHeader.Read
var v_fields = new List<DBFField>();
var field = DBFField.CreateField(dataInput); /* 32 each */
int endField = 64;
while (field != null)
{
v_fields.Add(field);
if (endField >= _headerLength) break;
endField += 32;
field = DBFField.CreateField(dataInput);
}
The text was updated successfully, but these errors were encountered:
FCAPITAL.zip
There are are only two fields in this table. The start position of the record data is 96.
When the program read the field header, It read one more character. And then start reading the records at 97.
I have made this change on the DBFHeader.Read
The text was updated successfully, but these errors were encountered: