I have a suggestion for the save as XML format. In the current format all the datafields are stored as attributes of the movie element.
Code: Select all
<Movie Number="" Actors="" Description="" ...>
It's not that it's anything wrong with your XML. I just think the structure makes it hard to read and also more important to do XSL transforms for.
I would suggest something like this:
Code: Select all
<movie>
<actors></actors>
<description></description>
...
</movie>
Code: Select all
<comments>
<comment>...</comment>
<comment>...</comment>
</comments>
/w