J
Jozef Halada
I have a typed dataset called ClientDataSet which has a table called
ClientDataTable.
It is defined in a project called Data Access. Inside this project I can do
following:
Dim ClientDataTable As ClientDataSet.ClientDataTable
ClientDataTable = New ClientDataSet.ClientDataTable
I have another project in the solution, which is a WebApplication. When I
use the same code in the other project, I get the following error in the
compiler:
Overload resolution failed because no 'New' is accessible.
As a workaround, I have a method of a class that returns to me an empty
ClinetDataTable, but I would like to find out what is happening.
Joe
ClientDataTable.
It is defined in a project called Data Access. Inside this project I can do
following:
Dim ClientDataTable As ClientDataSet.ClientDataTable
ClientDataTable = New ClientDataSet.ClientDataTable
I have another project in the solution, which is a WebApplication. When I
use the same code in the other project, I get the following error in the
compiler:
Overload resolution failed because no 'New' is accessible.
As a workaround, I have a method of a class that returns to me an empty
ClinetDataTable, but I would like to find out what is happening.
Joe