How to Read XML File

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • abhishek007p@hotmail.com

    #1

    How to Read XML File

    hi,

    i am new to xml via vb.net, can someone tell how to get the required
    data from a xml file & show it in textboxs.


    thanks,
    AB

  • Armin Zingler

    #2
    Re: How to Read XML File

    <abhishek007p@h otmail.com> schrieb[color=blue]
    > hi,
    >
    > i am new to xml via vb.net, can someone tell how to get the required
    > data from a xml file & show it in textboxs.[/color]



    http://msdn.microsoft.com/library/en...tframework.asp
    (same via <F1>)

    Contains a chapter "Reading XML with the XmlReader":
    http://msdn.microsoft.com/library/en...hxmlreader.asp


    Armin

    Comment

    • Paul Duncan

      #3
      Re: How to Read XML File

      Dim _xmlDocument As Xml.XmlDocument
      _xmlDocument = New Xml.XmlDocument
      _xmlDocument.Lo ad("c:\test.xml ")
      TextBox1.Text = _xmlDocument.In nerXm

      - P

      <abhishek007p@h otmail.com> wrote in message
      news:1121383978 .326333.104770@ z14g2000cwz.goo glegroups.com.. .[color=blue]
      > hi,
      >
      > i am new to xml via vb.net, can someone tell how to get the required
      > data from a xml file & show it in textboxs.
      >
      >
      > thanks,
      > AB
      >[/color]


      Comment

      Working...