Discussion:
Disable undo (list of changes)
(too old to reply)
Chiwa
2004-08-29 09:53:34 UTC
Permalink
Hey all,

Word keeps a list of all changes you have made while editing a document.
I want to disable that, is it possible?

I have made a vba-program for something like mailmerging (a litte bit
complexer).
But after x numbers of changes I get an error like this:
"Not enough memory available. This operation cannot made undon. Would you
like to continue?"

It is very annoying, it kinda screw up my "batch" program. I have a fast pc
with a lot of memory, so that's not the problem.

Can somebody help me with tihs?

Thx!
Peter Hewett
2004-08-29 10:11:41 UTC
Permalink
Hi Chiwa

If you Google on this topic you'll get a lot of hits. Document complexity if a fairly
common problem. There are a number of things you can do about it:

Kill the undo buffer, do this before/after each group of updates:
ActiveDocument.UndoClear
Periodically save the document, if necessary close it and reopen it as well.

HTH + Cheers - Peter
Post by Chiwa
Hey all,
Word keeps a list of all changes you have made while editing a document.
I want to disable that, is it possible?
I have made a vba-program for something like mailmerging (a litte bit
complexer).
"Not enough memory available. This operation cannot made undon. Would you
like to continue?"
It is very annoying, it kinda screw up my "batch" program. I have a fast pc
with a lot of memory, so that's not the problem.
Can somebody help me with tihs?
Thx!
h***@gmail.com
2013-09-04 18:35:41 UTC
Permalink
Post by Chiwa
Hey all,
Word keeps a list of all changes you have made while editing a document.
I want to disable that, is it possible?
I have made a vba-program for something like mailmerging (a litte bit
complexer).
"Not enough memory available. This operation cannot made undon. Would you
like to continue?"
It is very annoying, it kinda screw up my "batch" program. I have a fast pc
with a lot of memory, so that's not the problem.
Can somebody help me with tihs?
Thx!
That solution just clears the undo stack at the time it is run, rather than disabling it indefinitely until it is turned back on. I need to do the latter.
Auric__
2013-09-04 21:06:55 UTC
Permalink
Post by h***@gmail.com
Post by Chiwa
Hey all,
Word keeps a list of all changes you have made while editing a document.
I want to disable that, is it possible?
I have made a vba-program for something like mailmerging (a litte bit
complexer).
"Not enough memory available. This operation cannot made undon. Would you
like to continue?"
It is very annoying, it kinda screw up my "batch" program. I have a fast
pc with a lot of memory, so that's not the problem.
Can somebody help me with tihs?
Thx!
That solution just clears the undo stack at the time it is run, rather than
disabling it indefinitely until it is turned back on. I need to do the
latter.
Yeah, good luck with that. Do as Peter Hewett said ***NINE YEARS AGO*** and
just clear the undo stack regularly.
--
Don't ask me about it, you'll only make your brain hurt.
Loading...