How to edit the existing xml file data and delete it using C# through a user interface??? Help…
Fish I can’t tell if your just spamming this now or what… this is the 3rd thread with basically the same question.
http://www.kirupa.com/net/writingXML_pg1.htm
You would use the textbox control with the data (for loop through and organize it on the screen).
TextBox t = new TextBox();
t.Name = "name_of_control";
t.Left = 100;
t.Right = 100;
t.Text = "Your inner data";
this.Controls.Add(t);