Hi, I have the following xml doc:
I was wondering how it's possible to select say book with id 2, so that later I could use that book's title and text. I am just trying to figure this out so that later I could use something like MsgBox(Book.Title)...Code:<?xml version="1.0" encoding="utf-8"?> <books> <book id="1"> <title>book1title</title> <text>book1text</text> </book> <book id="2"> <title>book2title</title> <text>book2text</text> </book> </books>
Any suggestions?




Reply With Quote