Hello, how would I read an xml file that is structured like this:
<Books>
<BookTitle>Book title
<Author>Author's name</Author>
<Notes>Personal Notes</Notes>
</BookTitle>
<BookTitle>Book title 2
<Author>Author's name 2</Author>
<Notes>Personal Notes 2</Notes>
</BookTitle>
</Books>
It just keeps going.
Lets say that I have a ComboBox with autocomplete (the book titles as the source), how would I, after selecting a book, read each node to a textbox (3 textboxes in total)? Just the part in between <BookTitle></BookTitle>
Thanks!