Apologies, again me
I am afraid, the MULBLANK class is wrong
According to:
http://www.softhelp.ru/fileformat/excel/S59DA7.HTM
the existing code:
this.RowIndex = reader.ReadUInt16();
this.FirstColIndex = reader.ReadUInt16();
this.XFIndice = reader.ReadUInt16();
this.LastColIndex = reader.ReadInt16();
will not work
I believe that following code would be more appropriate:
this.RowIndex = reader.ReadUInt16();
this.FirstColIndex = reader.ReadUInt16();
int count = (this.Size - 6) / 2;
this.XFIndice = new List<UInt16>();
for (int i = 0; i<count; i++)
this.XFIndice.Add(reader.ReadUInt16());
this.LastColIndex = reader.ReadInt16();
thanks
--
xiv