M
moondaddy
I have 2 projects in the same solution that have a common strongly typed
dataset which they both use. Can they share it so that one project can pass
the dataset and it's data to the other project where the 2nd project can use
the methods and properties of this strongly typed dataset?
something like this:
'In project 1
public function Get_MyDataSet() as myDataSet
dim ds as new myDataSet
'populate the dataset here
return ds
End Function
In project 2
private Sub MyTest()
Dim ds as myDataSet = Project1.Get_MyDataSet()
End Sub
dataset which they both use. Can they share it so that one project can pass
the dataset and it's data to the other project where the 2nd project can use
the methods and properties of this strongly typed dataset?
something like this:
'In project 1
public function Get_MyDataSet() as myDataSet
dim ds as new myDataSet
'populate the dataset here
return ds
End Function
In project 2
private Sub MyTest()
Dim ds as myDataSet = Project1.Get_MyDataSet()
End Sub