Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
B

bharath_kraj

@bharath_kraj
About
Posts
2
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • MDI data storage in XML
    B bharath_kraj

    I have attached the code of the method I have written in the ChildForm.cs file but this is not the right code coz I am not able to append nodes to the XML file using this. My problem - I want to add a node with some text to the XML file whenever I open a new child window using normal MDI property. private void Xml_Creation(int count) { XmlWrt = new XmlTextWriter("XMLSample.xml",null); XmlWrt.Formatting=System.Xml.Formatting.Indented; XmlWrt.WriteStartDocument(); //start the first element. XmlWrt.WriteStartElement("FORMS"); //create our first customer element. //this is a child element of the customers element. XmlWrt.WriteStartElement("Form"); XmlWrt.WriteElementString("FormNumber", count.ToString()); XmlWrt.WriteEndElement(); //XmlWrt.WriteEndDocument(); //XmlWrt.Flush(); XmlWrt.Close(); } Cheers KR

    C# help xml

  • MDI data storage in XML
    B bharath_kraj

    Hello Everyone, I have developed a simple MDI forms application and am now stuck with a problem. I want to store the data of each childform in a seperate tag of an XML file. I have written a xml_write() method in the childform.cs but am not able to successfully write for each MDI childform. Can I get some help!! KR

    C# help xml
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups