DataGrid Question

  • Thread starter Thread starter John Wildes
  • Start date Start date
J

John Wildes

Is it possible to select multiple rows from a dataset and use those selected
rows as the basis for a new dataset? If so, how do I do this in code. I'm
not asking for someone to write it for me, but to explain to me how I would
do it. I am a new VB.NET programmer and am trying to write an application
that queries a database, returns a dataset from which I would like for the
user to be able to select which rows the would like to display in a Crystal
Report template. Please reply to the newsgroup. Thanks for the help.

John Wildes
Aon Risk Services
(e-mail address removed) (remove NOSPAM to email me)
 
Hi John,

There are of course a lot of possibilities, one approach

You can "select" from a table from the dataset in an array of datarows

With that array you can fill a new table,

Which you can add to dataset.

I hope this helps a little bit.

Cor
 
Back
Top