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
using (Stream dbf = File.Open(CompanyTable(), FileMode.Open, FileAccess.Read))
using (Stream fpt = File.Open(CompanyMemo(), FileMode.Open, FileAccess.Read))
{
using (var reader = new DBFReader(dbf) { DataMemo = fpt })
{
When I try to read the value of a memo field, I get an error:
Evaluating the function 'DotNetDBF.MemoValue.ToString' timed out and needed to be aborted in an unsafe way.
Is it possible to read memo fields?
The text was updated successfully, but these errors were encountered:
I am accessing a FoxPro table
using (Stream dbf = File.Open(CompanyTable(), FileMode.Open, FileAccess.Read))
using (Stream fpt = File.Open(CompanyMemo(), FileMode.Open, FileAccess.Read))
{
using (var reader = new DBFReader(dbf) { DataMemo = fpt })
{
When I try to read the value of a memo field, I get an error:
Evaluating the function 'DotNetDBF.MemoValue.ToString' timed out and needed to be aborted in an unsafe way.
Is it possible to read memo fields?
The text was updated successfully, but these errors were encountered: