Hi Andreas,
I don't think that there is a built-in way.
Do it manually in a loop, perhaps.
--
Miha Markic - RightHand .NET consulting & software development
miha at rthand com
"Andreas Klemt" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hello,
> I have this:
>
> Dim dv As New DataView(GetUsersAsDataTable())
> dv.RowFilter = "brithday >= 1970"
>
> Dim dt As New DataTable
> dt = **how to bring my rowfiltered DataView to a new DataTable** ?
>
> When I do
> dt = dv.Table
> I get my original DataTable so that is unfortunatly not the solution.
>
> Thanks for any help in advance!!
> Andreas
>
>
>
|