vote up 1 vote down star

Why does the code below result in 3 rows in my datagrid when there is only 2 rows in my CSV file? I end up with 2 populated rows and one empty row. The CSV file only contains 2 lines. I suspect the logic of the code below.

Do While Read()
    row = New DataGridViewRow()
    For Index = 0 To FieldCount - 1
        cell = New DataGridViewTextBoxCell()
        cell.Value = GetString(Index).ToString()
        row.Cells.Add(cell)
    Next
    DataView.Rows.Add(row)
Loop

Thanks

flag
1  
Is there mayhap an empty line last in the file? An errant carriage-return? – J. Steen Jun 23 at 15:34

3 Answers

vote up 2 vote down

If you have the AllowUserToAddRows property of the datagridview set to true, an extra row with a "*" will appear for that purpose.

link|flag
This is the most likely solution, the last row will have the IsNewRow property set to True – Patrick McDonald Jun 23 at 15:59
vote up 0 vote down

Do you have an extra newline at the end of your csv file?

link|flag
vote up 0 vote down

Do you have a trailing end-of-line at the end of the last line? If so then the code will be seeing the file as two full lines and one empty one.

If you know you will always have a final separator (line break in this case) then simply take an extra 1 off then ending value of the for loop. Otherwise check the last line first (to see if you need to loop once less) or check each line within the loop (this will be far less efficient).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.