Is there any word viewer plugin available for .NET 4.0 WinForms app [closed]
We developing an Application using .NET Framework 4.0 (C#) windows forms based application. Now, i want to show a word document's particular page in my application windows form with the same formatting in the original word document.Is there any way to show my word document's in C# Windows form based application...
How i do it?
Thanks & Regards.
The simplest way I know is to embed a WebBrowser control and set the URL to the document path.
Additional Infos:
- Add a
WebBrowser
Control to a form - Insert
webBrowser1.Url = new Uri(@"C:\doc\MyDoc.doc");
somewhere - Important constraint: IE and Word must be installed properly
精彩评论