Results 1 to 2 of 2

Thread: Native Connectivity to XML

  1. #1

    Thread Starter
    New Member
    Join Date
    May 2002
    Location
    New Delhi, India
    Posts
    3

    Question Native Connectivity to XML

    Does VB.Net offer native connectivity to XML?
    Which offers a more easier to distribute backend Access or XML?

  2. #2
    Addicted Member
    Join Date
    Mar 2001
    Location
    Devon, UK
    Posts
    181
    Get XML objects from the System.XML namespace. Miles easy that access as u only have to distribute a text file, what could be more simple??!!

    otxtReader = New XmlTextReader("******.xml")
    Do While otxtReader.Read
    Dim oNode As XmlNodeType
    oNode = otxtReader.NodeType
    If oNode = XmlNodeType.Element
    Try
    cboImages.Items.Add(otxtReader.GetAttribute("name"))
    Catch ex As Exception
    End Try
    End If
    Loop
    Wind and waves resolves all problems.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width