Home > ADO.Net > Looping Values of Column of a BindingSource

Looping Values of Column of a BindingSource

September 5th, 2009 admin Leave a comment Go to comments

for  (int i = 0;  i < BindingSourceName.Count;  i++)
{
     object Value = (object) (((DataRowView)BindingSourceName.List[i]).Row[IndexOfWantedColumn]);
}
Categories: ADO.Net Tags: ,
  1. No comments yet.
  1. No trackbacks yet.
You must be logged in to post a comment.