Start New Discussion Reply to this Discussion Save Datagridview contents
hey,
I have tried many methods to save my datagridview contents to a file
but with no luck
does anybody have a good method for xml to datagridview, datagridview to Xml,
or any other methods to read/write a datagridview
Related Article: Save datagridview to xml?
is a VB.NET discussion thread by DJAyzed that has 2 replies, was last updated 3 years ago and has been tagged with the keywords: data, grid, net, vb, view, xml.
Huntondoom
Light Poster
48 posts since Jul 2010
Reputation Points: 10
Solved Threads: 5
Skill Endorsements: 0
i did it once and it worked fine
i remember i did row1:cell;cell;cell|row2:cell;cell;cell ...
you can choose any other delimiter
than use the split method to reload the text into the dgrid.
ÜnLoCo
Light Poster
40 posts since Dec 2009
Reputation Points: 10
Solved Threads: 8
Skill Endorsements: 0
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
Huntondoom
Light Poster
48 posts since Jul 2010
Reputation Points: 10
Solved Threads: 5
Skill Endorsements: 0
use for each .. it's better i think
note: be careful with the delimiters .. only use chars you don't use in the cell contents like "#" or "|" or maybe "^"
ÜnLoCo
Light Poster
40 posts since Dec 2009
Reputation Points: 10
Solved Threads: 8
Skill Endorsements: 0
© 2013 DaniWeb® LLC
Page generated in 0.0662 seconds
using 2.64MB