Search found 2 matches

by Fyger
Tue Feb 17, 2009 7:20 am
Forum: XLSReadWriteII 3/4/5
Topic: How can I determine changes of data ?
Replies: 2
Views: 2975

Re: How can I determine changes of data ?

Hi You misunderstood me. I would like check the changes of the memory (cellstorage) before writing back to the file. Example: I set an cell with XLS.Sheets[0].AsString[0,0] := 'text'; and the data in the memory has changed, not in the excel file. How can I detect the changes of cells' data ? Is ther...
by Fyger
Wed Feb 11, 2009 11:14 am
Forum: XLSReadWriteII 3/4/5
Topic: How can I determine changes of data ?
Replies: 2
Views: 2975

How can I determine changes of data ?

Hello!

Does "Modified" property or similar function exist ?
I would like to write data into file if something changed :

XLS.FileName := 'test.xls';
XLS.Read;
...
process
...
if XLS.Modified then
XLS.Write;

Thanks