R
ruca
I'm filtering a DataView. After that I know that filter result only ( and
only) in one row with 4 or 5 columns. Now I want to pic up the value of one
of that columns (that I know only the name, eg. Code).
How can I take this value of that column of my DataView?
I have this:
dv.Table = dt (it's a DataTable variable)
dv.RowFilter = strFilter (that's my filter)
dv.Sort = strSort (that's my sort order)
strCode = .... //here I want to know the value of column named Code.
How can I do this????
only) in one row with 4 or 5 columns. Now I want to pic up the value of one
of that columns (that I know only the name, eg. Code).
How can I take this value of that column of my DataView?
I have this:
dv.Table = dt (it's a DataTable variable)
dv.RowFilter = strFilter (that's my filter)
dv.Sort = strSort (that's my sort order)
strCode = .... //here I want to know the value of column named Code.
How can I do this????