WorkSheet customproperties

N

Nay

Hi
I have an excel workbook that is opened with automation
Few CustomProperties are added(using worksheet.CustomProperties.add(...)
The source file is binary excel but I use workbook.saveas... to save it to
another location as xml !!!

Another application open the new workbook(the xml one) and try to read the
CustomProperties but it seems like there are no CustomProperties, actually
its count is 0.
If I open the file as xml(not with excel) I can't find the customproperties
as well.
Any idea?

thanks, Nay
 
J

Jim Rech

I saved a workbook as an XML spreadsheet in Excel 2003 and a custom property
(named 'abc' with a value of 'def' ) I put in it was saved:

<CustomDocumentProperties xmlns="urn:schemas-microsoft-com:eek:ffice:eek:ffice">
<abc dt:dt="string">def</abc>
</CustomDocumentProperties>

--
Jim
| Hi
| I have an excel workbook that is opened with automation
| Few CustomProperties are added(using worksheet.CustomProperties.add(...)
| The source file is binary excel but I use workbook.saveas... to save it to
| another location as xml !!!
|
| Another application open the new workbook(the xml one) and try to read the
| CustomProperties but it seems like there are no CustomProperties, actually
| its count is 0.
| If I open the file as xml(not with excel) I can't find the
customproperties
| as well.
| Any idea?
|
| thanks, Nay
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top