I need to make a program that will read XLS files in this form: (rows seperated by a ';')
(first row)
Id student name;LockerNo;Combination;Teacher
(second row)
record1
(third row)
record2
and so on...
I need to be able to read a certain file to compare with an other (specifically to check for records that are in the first but not in the second).
Unfortunately I have absolutely no idea which libraries (if any exist) to use, could anyone suggest certain API to look through to get me started?
Any help will be greatly appreciated.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35252
7
posted
0
What you describe looks like a CSV file, not like an XLS file (except that in CSVs, *columns* are separated by semi-colons, not *rows*).