D
Dorota Papiernik
Hi,
I use OWC10 Spreadsheet in my application (Win Form). I use XMLData property
of a spreadsheet object to save user work in spreadsheet to txt file (The
value of XMLData property is written to txt file ). When user want to come
back to his previous work he just has to open txt file where his work
(XMLData) has been written. It is done by operations:
string strXML;
AxOWC10.AxSpreadsheet xlsSpread
/*1*/ strXML = openReader.ReadToEnd(); // previous saved XMLData is reading
from txt file
/*2*/ xlsSpread.XMLData = strXML;
One of users has created a big report in OWC10 Spreadsheet (report has 100
sheets) and has saved the XMLData to txt file. File with XMLData has size
50MB. Now when he tries to read this XMLData from file (line /*1*/) and set
XMLData property of a spreadsheet object (line /*2*/) he has an error in line
/*2*/ : "Unspecified error". Operation in line /*1*/ is OK.
Is there any limits on XMLData property of a spreadsheet object. How big
XMLData can be to work properly?
Thank you for any information
Dorota Papiernik
I use OWC10 Spreadsheet in my application (Win Form). I use XMLData property
of a spreadsheet object to save user work in spreadsheet to txt file (The
value of XMLData property is written to txt file ). When user want to come
back to his previous work he just has to open txt file where his work
(XMLData) has been written. It is done by operations:
string strXML;
AxOWC10.AxSpreadsheet xlsSpread
/*1*/ strXML = openReader.ReadToEnd(); // previous saved XMLData is reading
from txt file
/*2*/ xlsSpread.XMLData = strXML;
One of users has created a big report in OWC10 Spreadsheet (report has 100
sheets) and has saved the XMLData to txt file. File with XMLData has size
50MB. Now when he tries to read this XMLData from file (line /*1*/) and set
XMLData property of a spreadsheet object (line /*2*/) he has an error in line
/*2*/ : "Unspecified error". Operation in line /*1*/ is OK.
Is there any limits on XMLData property of a spreadsheet object. How big
XMLData can be to work properly?
Thank you for any information
Dorota Papiernik