selecting columns for a dataview

  • Thread starter Thread starter Chuck Hecht
  • Start date Start date
C

Chuck Hecht

If I want to pull only a few fields from a data set into a view how do I do
it? I use the rowfilter in the dataview to filter the data but how do I get
the fields that I need?

chuck
 
I suspect you're binding to some UI control? If that's the case, column
selection is done on control level; it's not "filtered out" at DataView.

Look into description of specific control you're binding to on how to do
that.



If you not binding to control, simply access whatever column you need.


--
Best regards,

Ilya

This posting is provided "AS IS" with no warranties, and confers no rights.

*** Want to find answers instantly? Here's how... ***

1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).
 
Back
Top