hi
I’ve got a pretty complex Access VBA application running, that launches Word to create some specialised documents. I’t been working fine in production for a few years.
This morning one machine, and now another have fallen over. They crash on the code below. Even this simplified code falls over with error number 70 ‘Permission Denied’. It’s running on Win XP SR2, and has been running fine on that platform for a few months. No patches or other software has been installed; we’re behind a corporate firewall. Automatic updates is off.
Note that Word works apparently fine by itself.
Help!
Dim wd As Word.Application Set wd = CreateObject("Word.Application")
Peter