Hey all,
I've been very interested in CSV files for a few years now, but I never needed to use them until now, so I'm pretty new to this.
I have an application that stores information about Controls that were created by the user at run-time. I plan on using CSV files to store this information which will be extracted at a later date by a user when they open the file into my program.
These CSV files will have the following structure. Let's say, for example, a user creates a LinkLabel, assigns some text to it, and then creates a Label and assigns some text to that, too. The output file (CSV file) will look like this:
CSVFile.csv
LinkLabel,This is LinkLabel's text,170,40
Label,This is Label's text,170,50
Explanation:
Control,Text,LocationX,LocationY
Control,Text,LocationX,LocationY
..So, as you can see, the information will always be the same. Control, Text, LocationX, LocationY...
Can anybody point me to any good, easy to understand resources where I can learn how to write such a file? And then extract that information aswell?
Thanks, Jason.