I have a group of Word templates and I want to create a Add-in Word (app VSTO – Visual Studio Tools Office ) through which I can display the template I would like to work on and make the necessary modifications to it.
I have already created a project (C#) for one Word file template, but through the same project I want to control other templates
3
I have succeeded in creating code that displays each form when the corresponding button is pressed
Microsoft.Office.Interop.Word.Application wdApplication = Globals.ThisDocument.Application;
wdApplication.Documents.Add(@"C:dossierMODEL1.dotx");