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
  1. Home
  2. General Programming
  3. XML / XSL
  4. Create xml file

Create xml file

Scheduled Pinned Locked Moved XML / XSL
htmlxmlquestion
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    Maynka
    wrote on last edited by
    #1

    Hi, How can i create XML file using MSXML DOM node. Regards

    S N 2 Replies Last reply
    0
    • M Maynka

      Hi, How can i create XML file using MSXML DOM node. Regards

      S Offline
      S Offline
      sathesh pandian
      wrote on last edited by
      #2

      you can use xmldocument to create the xml file.

      All The Best Sathesh Pandian

      1 Reply Last reply
      0
      • M Maynka

        Hi, How can i create XML file using MSXML DOM node. Regards

        N Offline
        N Offline
        Naji El Kotob
        wrote on last edited by
        #3

        Hi, Dim dom As New Xml.XmlDocument dom.LoadXml("") Dim root As Xml.XmlElement = dom.DocumentElement Dim Elem As Xml.XmlNode = dom.CreateNode(Xml.XmlNodeType.Element, "item", "") Elem.InnerText = "XYZ" root.AppendChild(Elem) MsgBox(dom.DocumentElement.OuterXml) dom.Save("dom.xml") for more details go to http://msdn2.microsoft.com/en-us/library/system.xml.xmldocument.aspx[^] hope this helps :)

        NajiCo http://www.InsideVB.NET[^] It's nice 2b important, but it's more important 2b nice...

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

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