The project doesn't seem to support Mac Excel files. When
attempting to parse a Mac file the reader seems to hang forever.
Is there any idea of when Mac support will be included?
I'll give the same problem on files created in mac.
problem is - a little different format of headers.
rootentry in usual excel named as "Root Entry", in Mac
version it just "R"
So, to fix problem with reading Mac file, required only in
oleread.inc in about line 204, to change
if ($name == "Root Entry") {
to
if ($name == "Root Entry" || $name == "R") {
I've done it, and now no problem with reading mac file,
hope it will be used for you
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: NO
I'll give the same problem on files created in mac.
problem is - a little different format of headers.
rootentry in usual excel named as "Root Entry", in Mac
version it just "R"
So, to fix problem with reading Mac file, required only in
oleread.inc in about line 204, to change
if ($name == "Root Entry") {
to
if ($name == "Root Entry" || $name == "R") {
I've done it, and now no problem with reading mac file,
hope it will be used for you