Dataset manipulation

  • Thread starter Thread starter Bradley
  • Start date Start date
B

Bradley

Can somebody point me to link or, preferably, an example of an application
that displays data from a dataset bound to a control (e.g. datagrid) where
the content of the data is limited by user supplied select criteria? I need
to perform the following actions on the data: Add/Edit/Delete functions,
based on the user selection.

TIA

Brad
 
You could use the

Dim strSelect As String = "Col1 = '" & strvar1 & "' and Col2 = " &
intvar2
Dim dtRow() as DataRow = myDataSet.Tables(0).Select(strSelect)

you could use.. dtRow array and store it in DataSet, and manuiplate.. or
get the refrence row from dtRow array and directly update your primary
datasource...

Thanks
VJ
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top