zahavawein
New member
opening a word document through c#
I wanted to know if anyone knows how to open a word document through c#? I want to open a certain document which is designed as a template and send it information to fill the template. I don't even know from where to begin. I did manage to open word by doing as follows: First I added microsoft word to my referenced of my solution. Next I created an object of Word.ApplicationClass and last I set the visible to be true: Word.ApplicationClass a = new Word.ApplicationClass(); a.Visible = true; This opened word. What do I do next? Thank you.