Hi all

Im trying to loop through spesific coloums of a bindingsource but i am having some trouble

the code i have so far is

c# Code:
  1. private void CountLines(BindingSource bs)
  2.         {
  3.             int x = 0;
  4.             foreach (DataRowView IncidentRow in bs)
  5.             {
  6.                 MessageBox.Show(IncidentRow.ToString());
  7.                
  8.                 x++;
  9.             }//foreach (DataRowView invoiceRow in invoicebindingsource)
  10.             MessageBox.Show(x.ToString());
  11.            
  12.         }

But all i get out is



so my question is how would i say messagebox.show each summary or each ref num?


thanks

Crash