c# - Is there any word viewer plugin available for .NET 4.0 WinForms app -


we developing application using .net framework 4.0 (c#) windows forms based application. now, want show word document's particular page in application windows form same formatting in original word document.is there way show word document's in c# windows form based application...

how it?

thanks & regards.

the simplest way know embed webbrowser control , set url document path.

additional infos:

  • add webbrowser control form
  • insert webbrowser1.url = new uri(@"c:\doc\mydoc.doc"); somewhere
  • important constraint: ie , word must installed properly

Comments