Hi I would like to open a word in c #. I mean I would like to know how a word document is embedded in c# I found some article in the net and I have question. What does it mean here: Open Word Application, and Add New. If I open the Word I don't see any "add new" is that in C#? I'm using Microsoft Visual Studio 2008. Thanks
All the methods used Word automation is derived either from Word.Application or Word.Document class.
Let's consider that we want to create a document using the Word Application, we might end up doing the following steps,
Open Word Application. (Opening Word Application creates a new document by default, but in Automation, wee need to manually add a document)
Add a New document.
Edit the document.
Save it
regards C# NewBie
=========
you can find the article here by the way: http://www.c-sharpcorner.com/UploadFile/amrish_deep/WordAutomation05102007223934PM/WordAutomation.aspx and I would like to clear it out, that this is not a homework.