DYNAMICSOFF

Started by contact_ankit86, March 19, 2013, 01:56:36 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

contact_ankit86

Hi


i want to set the Dynamicsoff property of a page to True / false via VBA code.

Can anyone help. I can do it manually but need to change in between of some process via VBA Code.

Thanks in anticipation of a favorable response.

Jumpy

I have no Visio at the moment, but sth. like this?


Dim pg as Page
Set pg=ActivePage
pg.PageSheet.Cells("Dynamicsoff").Formula=True

Surrogate

#2
i check this code on my PC
ActivePage.PageSheet.CellsSRC(visSectionObject, visRowPageLayout, visPLODynamicsOff).FormulaU = "1"

Jumpy,
your code work too ^)