When accessing Legacy Form Field values in my Word 2013 document like this (getting or setting):
' get
myField = ActiveDocument.FormFields("myField").Result
' set
ActiveDocument.FormFields("myField").Result = myValue
the document weirdly jumps/scrolls down and up and stops at a complete different position (it seems to jump to the lines where the referred fields are positioned).
Have a look at this screencast or a sample file where the error can be viewed.
I have used
Application.ScreenUpdating = False
at the beginning of my Sub
and
Application.ScreenUpdating = True
at the end of my Sub
but unfortunately this doesn't help.
What do I have to modify in order to suppress this behaviour?