1
vote
1answer
65 views

Reading XML for iTunes RSS feed

Hey all i am reading my XML RSS feed like so: Dim rssSubNode As XmlNode = rssNode.SelectSingleNode("title") Dim title As String = If(rssSubNode IsNot Nothing, rssSubNode.InnerText, "") rssSubNode = ...
0
votes
0answers
124 views

How to attach xml schema nodes to word document 2013

I have a problem with word document in 2013 version . I have create a word document template using 2010 (.XSD file) and attach this XSD file to template (in developer tab --> Schema ) this document ...
1
vote
4answers
551 views

Xml node value from an attribute in VB.net

I have a XML like <Categories> <category name="a"> <SubCategory>1</SubCategory> <SubCategoryName>name1</SubCategoryName> </category> ...
0
votes
0answers
32 views

XML Nodes not working in MS-Office 2002

In my application I need to print the data in a Word Document. I have created a word document Form Template for this to load XML(WorkOrders.xsd file name). I bind the data through vb.net based on the ...
0
votes
0answers
71 views

How to get all parent nodes and grandparent node of an child using XmlDocument in vb.net

I want to get list of all parent nodes for particular child using XmlDocument. But i dont want to use the LINQ. My input is : <parent1> <parent2> <parent3> ...
0
votes
1answer
398 views

Checking for XML NODE null

Is there anyway to check for a null here before it reaches this part of the code? tmpLabelData(0) = m_node.Item("CONTAINER_NAME").InnerText Some XML has it while others do not. I cant seem to find ...
0
votes
1answer
88 views

XmlNode.SelectNode Weirdness (Not finding one of two very similar nodes)

I ran into a bug with a piece of software I manage that is used to create Bills of Materials based on user selections. It works with a large xml file that contains all of our part numbers as well as ...
0
votes
1answer
762 views

Easiest way to add xml a node with a bunch of children nodes in .Net?

I need to modify a xml file (actually a .rdlc report file) and add some nodes which have a lot of children nodes (and those children nodes again have children nodes). Actually they are almost the same ...
6
votes
2answers
739 views

Avoid reloading all XML data for each repeater - vb.net

I am trying to place a repeater within a repeater using xml data. I have it working exactly as I want, but the method I have used reloads the data for each repeater. I think I need to cast as an ...
0
votes
0answers
583 views

Inserting xml element in xml document.

I have a XML document and I want to put new node in certain position. I'm writing code in vb.net. So What I want is just to insert element that holds the group of elements.I'm getting the object ...
0
votes
2answers
843 views

how to add a xmlnode in a particular postion of xml file using vb.net

could anybody help me to write nodes to existing xml file to a particular position using vb.net? <xml> <person> <name>a</name> </person> <person> ...
0
votes
1answer
466 views

How to walk across XmlNode in VB.NET 2008

I need to walk or interact across all nodes and child nodes with VB.NET 2008 and display thru debug.print. Thanks.
2
votes
1answer
8k views

Load an XmlNodeList into an XmlDocument without looping?

I originally asked this question on RefactorMyCode, but got no responses there... Basically I'm just try to load an XmlNodeList into an XmlDocument and I was wondering if there's a more efficient ...