We have a macro that updates all the fields in a document using the
following:
ActiveDocument.Fields.Update

On larger documents we are getting the insufficient memory error. Is there
anyway around this?

Re: insufficient memory - ActiveDocument.Fields.Update by Hamish

Hamish
Tue Oct 31 14:54:35 CST 2006

Is this command part of a larger macro? You could try inserting
"ActiveDocument.UndoClear" before updating the fields. Of course, this
will remove all of actions from the undo buffer.

Hamish

ML wrote:
> We have a macro that updates all the fields in a document using the
> following:
> ActiveDocument.Fields.Update
>
> On larger documents we are getting the insufficient memory error. Is there
> anyway around this?
>
>