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
"Bradley" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> 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
>
|