Search results for query: *

  1. K

    Null value while Reading XML file

    Ok, ha, let's try again. Sorry I'm having difficulty explaining it myself you see. Just so you know where I'm coming from: Imports System.IO Imports System.Xml Public Class XMLReader Public Sub New() ' This call is required by the Windows Form Designer. InitializeComponent() End Sub...
  2. K

    Getting node list

    Ah - so that's who you are! :) You, without knowing, got me started on this in the first place. :D I found that demo on Google ha. Now - from what I understand - that code goes through and reads XML. I've done that part & it works well. What I'm trying to achieve is this: The program...
  3. K

    Null value while Reading XML file

    Hi, Thanks for the reply.. I might of misunderstood but it still generates that error: [/color][/size] Thanks, Chris
  4. K

    Getting node list

    Hi there, I've got some code I'm using to read an XML file: System.Xml XmlDocument etc etc Now my question is - with my XML file I have such things as: <bla> <name> <desc> <valuesss> <test> </bla> <bla> <name> <desc> <valuesss> <test> <red> <blue> </bla> Is there anyway I can go...
  5. K

    Null value while Reading XML file

    Null value question I've written this code for my XML reader: NodeText = XmlNode.ChildNodes.Item(XmlChildNodeCount).Innertext Now sometimes - when it reads this - it's going to come across nodes such as: <field /> Obviously in that situation - there is no InnerText and as such it will...
Back
Top