Hi all
The problem is that the file System.Data.dll is not found on the assembly directory. When the Stimulsoft preview opens this file is not found so Windows throwes an exception error. What can I do?
The problem is that the file System.Data.dll is not found
Re: The problem is that the file System.Data.dll is not foun
Hello,
We found some strangeness in work of .NET Framework 4.0. In some cases, the compiled project cannot load the System.Data.dll system library, although the link to the library project is added.
You should do the following to solve this problem:
in start of your application please add the following lines of code:
using System.Data;
....
DataSet ds = null;
This lines of code will be force to load System.Data library in the memory.
Thank you.
We found some strangeness in work of .NET Framework 4.0. In some cases, the compiled project cannot load the System.Data.dll system library, although the link to the library project is added.
You should do the following to solve this problem:
in start of your application please add the following lines of code:
using System.Data;
....
DataSet ds = null;
This lines of code will be force to load System.Data library in the memory.
Thank you.