Hellowww again my friends...

I have a datagridview that contains the column "Amount".

I also have a textbox

I want the sum of the column "amount" to appear in the textbox

I have tried the following:


VB Code:
  1. dim total as Integer
  2.  
  3. For Each row As DataGridViewRow In  TblBetalingAanMedewerkerDataGridView.Rows
  4. Total += row.Cells("Bedrag").Value
  5. Next
  6.  
  7. txtTotaalBedrag.Text = Total

I get the message "Cant find column "amount".
Parametername: ColumnName


Do you guys have an idea what i am doing wrong????

Thanks in advance