[RESOLVED] Convention with XML structure
Would it be bad to save my XML data in this format?
Code:
<folder_list>
<folder tag="Program Files" abs="C:\Program Files" unc="C:\Program Files" lbl="default" />
</folder_list>
Basically, there is a listbox that will show the tag "Program Files" for visual user reference.
The abs, unc and lbl attributes will mainly be in a DataTable, only called upon when an entry is double-clicked in the listbox.
Is there a particular reason I would save this data differently, or is it sorta left up to preference?
Re: Convention with XML structure
preference mostly. Based on the data you've provided in your example, that's the way I'd go with it too. The data is specific to the folder item.
-tg
Re: [RESOLVED] Convention with XML structure