Powerpoint 2007 cell shape properties missing

M

MHab

In PowerPoint 2007 (I checked this under Vista), many of cell shape
properties are missing (I need tags). Reading or writing to them cause an
exception "Object doesn't support this action" in VBA and "The method or
operation is not implemented" under C#. Google the internet with string
<PowerPoint 2007 shape "Object doesn't support this action"> display many
discussions about this. Is there a workaround for this problem? Is there a
project to correct this (according to documentation)?
 
S

Steve Rindsberg

In PowerPoint 2007 (I checked this under Vista), many of cell shape
properties are missing (I need tags). Reading or writing to them cause an
exception "Object doesn't support this action" in VBA and "The method or
operation is not implemented" under C#. Google the internet with string
<PowerPoint 2007 shape "Object doesn't support this action"> display many
discussions about this. Is there a workaround for this problem? Is there a
project to correct this (according to documentation)?

Known bug, no known general workaround.

But in your case (tags) you could probably work around it by applying tags to
the table object that contains the cells; the tag name would indicate which
cell you're referring to:

.Tags.Add "3|5", "This is the tag value for the cell at Row 3, Column 5"

Or if you need more than one tag per cell:

.Tags.Add "3|5|Name", "This is the Name tag value for the cell at Row 3,
Column 5"
 
M

MHab

Thanks for your answer.

It is not a good solution for my case. Do you know if there is a project to
fix this?
 
S

Steve Rindsberg

Thanks for your answer.

It is not a good solution for my case. Do you know if there is a project to
fix this?

I know it's been reported as a bug; whether it'll be fixed or not, I don't
know. Like most others who answer questions here, I'm not an MS employee, so
I don't have access to that kind of information.
 

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