Я получаю сообщение об ошибке «Ссылка на объект не установлена на экземпляр объекта» при попытке перебрать строки в DataGridView в VB.Net
' This works smooth and returns output as 5
MsgBox(DtaGrid_Tasks.Rows.Count)
'This throws error in first line itself
For j As Integer = 0 To DtaGrid_Tasks.Rows.Count - 1
MsgBox(DtaGrid_Tasks.Rows(j).Cells(3).Value.ToString)
Next
'Also tried this but getting same error
For Each dRow As DataGridViewRow In DtaGrid_Tasks.Rows
'Other codes
Next