TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Memento
NA
111
133.3k
How to update or rewrite xml file according to changes in DataGridView
May 17 2012 2:58 AM
C# winforms
I filled my DataGridView (dgv01) with xml nodes, like that:
foreach (XmlNode node1 in node.ChildNodes)
{
if (node1.Name == "abc")
{
dgv01.Rows.Add(node1.InnerText, node1.ChildNodes[0].InnerText, node1.ChildNodes[1].InnerText);
Then I made some changes on dgv - add-delete rows, change content etc.
Is there a way to update or completely rewrite my xml file according to changes in dgv.
Thanks in advance.
Reply
Answers (
2
)
Microsoft Interop Office Word - MultiLevel List
Focus On Dgv From Other Controls' KeyDown Event