

Word.Application app = new Word.Application() How do I loop through all entries in the database, open a new document based on the template and set the id-value? for(int i = 0 i < idnumbers.Count() i++)

I am quite confident that this is possible. I have figured out, that I might create a Word Template project in visual studio 2010, and program the template, so that when you enter a single value (id-number), it automatically fills out the entire document. The documents are populated with data from a database, and images found on a local drive. I am trying to create about 600 reports in Microsoft office Word.
