Wrox Programmer Forums
|
Visual Basic 2005 Basics If you are new to Visual Basic programming with version 2005, this is the place to start your questions. For questions about the book: Beginning Visual Basic 2005 by Thearon Willis and Bryan Newsome, ISBN: 0-7645-7401-9 please, use this forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Visual Basic 2005 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 28th, 2007, 07:18 PM
Registered User
 
Join Date: Apr 2007
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Default Help with xml

(moved to here, misposted in vb 2002-2003)

Hi i have an xml file that looks like this

<?xml version="1.0" encoding="utf-8"?>
<myRoot />


I would like to add child? elements to my myRoot element using vb .net2. I am getting "This document already has a 'DocumentElement' node." Error with the following code


        Dim myXmlDoc As XmlDocument = New XmlDocument()
        Dim myElement As XmlElement

        myXmlDoc.Load("c:\test.xml")
        myElement = myXmlDoc.CreateElement("newChild")
        myXmlDoc.AppendChild(myElement)

        myXmlDoc.Save("c:\test.xml")


Can anyone help with this please (im new to this) and have googled for a bit on this, which only seemd to complicate it for me.

Visual Studio 2005 (sp1)
dotnet 2.0

Thanks in advance for any help or improvements to this
Regards







Similar Threads
Thread Thread Starter Forum Replies Last Post
SQL Server 2005 XML: FOR XML PATH -> cdata? stoves SQL Server 2005 1 July 8th, 2008 02:40 AM
Creating XML doc ; writing string(xml format) into KamalRaturi XML 5 May 28th, 2008 05:51 AM
VB.net, adding XML data to an existing XML file saikoboarder XML 11 April 17th, 2008 04:19 PM
xml invalid top level from ASP write XML(solution) g000we XML 0 August 9th, 2006 03:56 AM
DTS Package, XML task. Read XML file and store it Victoria SQL Server DTS 0 July 24th, 2006 02:43 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.