So I am tasked with filling out a legal document with data from our database. Roughly 650 fields. The word document is a protected document with form fields.
I figure I can fill it this way with a series of these commands.
oDocument.FormFields.Item(i).Result = “Field Data Goes Here”
However, this is painfully slow, about 5 fields a second. Is there any way I can speed this up, or a different way to fill them out?