C
Caroline
I'm trying to set, and read Custom properties:
For Each Shap In ActivePage.Shapes
Shap.Cells("Prop.cp").Formula = "=" & Chr(34) & "some value" &
Chr(34)
leads to the following error:
Run-time error '-2032466967 (86db03e9)':
Unexpected end of file.
It seems that the Custom Properties I added, namely cp, cannot be
updated. (I checked, they CAN be changed by right clicking on the
shape and using the GUI)
if however, I try to set a preexisting Custom Property (ie. Cost
or Duration in this case), it works fine
MsgBox Shap!cp
leads to the following error:
Run-time error '451':
Property let procedure not defined and property get procedure
did not return an object
How can I read this value?
Thanks
For Each Shap In ActivePage.Shapes
Shap.Cells("Prop.cp").Formula = "=" & Chr(34) & "some value" &
Chr(34)
leads to the following error:
Run-time error '-2032466967 (86db03e9)':
Unexpected end of file.
It seems that the Custom Properties I added, namely cp, cannot be
updated. (I checked, they CAN be changed by right clicking on the
shape and using the GUI)
if however, I try to set a preexisting Custom Property (ie. Cost
or Duration in this case), it works fine
MsgBox Shap!cp
leads to the following error:
Run-time error '451':
Property let procedure not defined and property get procedure
did not return an object
How can I read this value?
Thanks