P
Paul Herber
In our SanDri-La application for Visio, we use a line of code (in
Delphi) :
diagramType := pagObj.PageSheet.Cells['Prop.diagram_type'].FormulaU;
where diagram_type is of type string.
This seems to work fine in with Visio 2000 and Visio 2003 in our
development environment.
However, a customer (in Italy, but using English versions of Windows
and Visio) is reporting an exception being caused by this line.
Changing the line to :
diagramType := pagObj.PageSheet.Cells['Prop.diagram_type'].GetFormula;
seems to fix this.
Can anyone shed any light on this?
MTIA.
Delphi) :
diagramType := pagObj.PageSheet.Cells['Prop.diagram_type'].FormulaU;
where diagram_type is of type string.
This seems to work fine in with Visio 2000 and Visio 2003 in our
development environment.
However, a customer (in Italy, but using English versions of Windows
and Visio) is reporting an exception being caused by this line.
Changing the line to :
diagramType := pagObj.PageSheet.Cells['Prop.diagram_type'].GetFormula;
seems to fix this.
Can anyone shed any light on this?
MTIA.