You were so close.
DataView :
<http://davidhayden.com/blog/dave/archive/2006/02/11/2798.aspx>
DataView to DataTable:
<http://www.daniweb.com/code/snippet217027.html>
--
Stephen Russell
Sr. Production Systems Programmer
CIMSgts
901.246-0159 cell
For Each row As DataRow In ds.Tables(0).Select(userFilter)
'do the specialized processing on the row
Next
Now that I have proved this works, I can eliminate about 50 lines of code
with another routine where I am processing each cell in the grid by pulling
a compete row and do the processing in a couple lines of code.
Jeff K. Steinkamp N7YG
Tucson, AZ
SCUD Missile Coordinates:
N032-13-55.02 W110-55-52.79
Registered Linux User: 420428
------------------------------------------------------
Whoever profits by the crime is guilty of it.
--------------------------------------------------
From: "Stephen Russell" <sruss...@gmail.com>
Sent: Tuesday, October 12, 2010 5:31 AM
To: <dotnetde...@googlegroups.com>
Subject: Re: [DotNetDevelopment] Cast a DatagridView row to a DataRow
Sounds good. Your changes are done to the ds.dt so they are ready to
be updated if need be as well.