oh so for each row you create a line (of string),
thnx!
ps: I created this with the information for saving:
Dim content As String
For I As Integer = 0 To DataGridView1.Rows.Count
For J As Integer = 0 To DataGridView1.ColumnCount
content = content & ";" & DataGridView1.Rows(I).Cells(J).Value.ToString
Next
content = content & vbCrLf
Next