I have a DatagridView
with hours of the form hh:mm:ss
as I could add all those hours. I have the following but it does not work for me, add the time as a string. For example, 9: 22: 347: 24: 14
Dim horasT
For Each row In Datos.Rows
If row.Cells(6).Value.ToString() <> "0" Then
horasT += CDate(row.Cells(6).Value), "hh:mm:ss")
End If
Next