Hello,
in this regard there are two methods for DataSet objects,
1-Clone
yourNewDataSet=yourDataSet.Clone();
Clones the structure of the DataSet, including all DataTable schemas, relations, and constraints.
2-Copy
yourNewDataSet=yourDataSet.Copy();
Copies both the structure and data for this DataSet,
HtH.
--------------------------------------------
Mehdi.:)
|