Hi!
I am trying to update to XLSReadWriteII Version 5.
But it is hard to get the old code working with the new version.
It seems that a lot of methods, types and units have changed but I found
only a few changes in the changes.txt and also the examples in the 'Samples' folder are very minimalistic.
Is there a help file or s.th. similar available which documents the complete changes in Version 5?
This would be very helpful.
Thanks in advance!
XLSReadWriteII 5 - Help
Re: XLSReadWriteII 5 - Help
Hello,
This is really a problem.
It seems to me that it is possible to have installed TXLSReadWriteII5 and the old TXLSReadWriteII4 in the same project. Is this true?
Sincerely Peter
This is really a problem.
It seems to me that it is possible to have installed TXLSReadWriteII5 and the old TXLSReadWriteII4 in the same project. Is this true?
Sincerely Peter
Re: XLSReadWriteII 5 - Help
Hello
We are working on the documentation. If you have any specific questions, please let me know.
You can have any combination of the component versions installed at the same time. This is intentional.
We are working on the documentation. If you have any specific questions, please let me know.
You can have any combination of the component versions installed at the same time. This is intentional.
Lars Arvidsson, Axolot Data
Re: XLSReadWriteII 5 - Help
Hello.
Okay, thanks.
I got the most of my code to work.
Nevertheless a help file would be nice.
Okay, thanks.
I got the most of my code to work.
Nevertheless a help file would be nice.
Re: XLSReadWriteII 5 - Help
Hello,
I also could compile my projects with XLSReadWriteII 5.
The global Changes were
XLSReadWriteII4 --> XLSReadWriteII5
.Sheets[ --> [
.Sheets.Count --> .Count
More than that, if you want to use
XLSReadWriteII51[0].LastRow;
then after the Read statement must follow CalcDimensions,
otherwise the integer value returns -1 instad of LastRow or LastColumn.
e.g.
XLSReadWriteII51.Read;
XLSReadWriteII51.CalcDimensions;
maxMessageNumber := XLSReadWriteII51[0].LastRow;
Sincerely
Peter
I also could compile my projects with XLSReadWriteII 5.
The global Changes were
XLSReadWriteII4 --> XLSReadWriteII5
.Sheets[ --> [
.Sheets.Count --> .Count
More than that, if you want to use
XLSReadWriteII51[0].LastRow;
then after the Read statement must follow CalcDimensions,
otherwise the integer value returns -1 instad of LastRow or LastColumn.
e.g.
XLSReadWriteII51.Read;
XLSReadWriteII51.CalcDimensions;
maxMessageNumber := XLSReadWriteII51[0].LastRow;
Sincerely
Peter
Re: XLSReadWriteII 5 - Help
How to do this:
Cell[Col, Row].AssignFormat(FormatIndex)
Cell[Col, Row].AssignFormat(FormatIndex)
Re: XLSReadWriteII 5 - Help
Hello
FormatIndex is not used anymore. Please see the FormatCell sample form more details.
FormatIndex is not used anymore. Please see the FormatCell sample form more details.
Lars Arvidsson, Axolot Data
Re: XLSReadWriteII 5 - Help
FormatCell example folder is empty.