New DataSet from Existing -- Quick Question

  • Thread starter Thread starter Temp
  • Start date Start date
T

Temp

Can anyone tell me how I can create a new DataSet from a single column of an
existing DataSet?

For example, I have a DataSet containing 1000 records with 4 columns per
record. Any idea how I can create a new DataSet containing a single column?

Thanks for your help,

Ron

--
_____________________________
Ron Rodenberg
Lead Software Engineer
Razorvision Technology, Inc.
(214) 207-1688
 
DataSet consists of DataTables. Therefore, saying that "DataSet containing
1000 records with 4 columns per
record" does not really make sense.
Programmatically, you can create a DataTable and create records copying them
from another DataTable.
 
Back
Top