Anton said:
I use Word 2003.
I am creating very big Word document(500 pages) using VBA macro. It takes
some minutes.
Macro uses 100% CPU in Normal prority for the Word process.
I can not open and edit other Word document in that time.
Can macro work in one process with changing document and I change other
word
document in other process in the same time?
Short answer - No. Go and get a cup of coffee while the macro is running.
Longer answer. In theory yes, but I really wouldn't recommend it. You would
have to have designed your macro to make no use of Selection, Select,
ActiveDocument, Copy, Paste, PasteSpecial or PasteAndformat (and probably
some others that I have missed) otherwise manually switching to another
document and editing it will mess up the running of the macro. I suggest you
don't even try. If you need to be getting on with other work in the
meantime, the best approach is to get a second PC.