Using Microsoft.Office.Interop.Word assembly

后端 未结 3 2103
感情败类
感情败类 2021-01-06 09:54

I have to do a word document programming in c#. Is there any way to access Microsoft.Office.Interop.Word assembly without installing Microsoft word? I tried to install Offic

相关标签:
3条回答
  • 2021-01-06 10:24

    maybe its too late to answer... but for those who are looking for the same solution, Open XML SDK is the library Microsoft released and its used to work with office documents (doc, xls, ppt,...)

    0 讨论(0)
  • 2021-01-06 10:35

    As Dr TJ says, you could use Open XML SDK for it. We used Word.Interop but it halt sometimes, and it is not recommend for Microsoft, to use it as a server side document formatting, so Open XML SDK lets you creates word documents on DOCX and Open XML formats very easily. It lets you going well with scability, confidence ( the files, if it is corrupted can be rebuild ), and another very fine characteristics.

    0 讨论(0)
  • 2021-01-06 10:37

    Have you tried the PIA Redistributable for whatever version of Office you are trying to work on?

    The Office 2010 PIA redistributable, for example, does not list Office as a requirement (but of course that could be an error in the System Requirements section).

    http://www.microsoft.com/downloads/en/details.aspx?FamilyID=938fe8ad-583b-4bd7-a345-23250dc15855#SystemRequirements

    0 讨论(0)
提交回复
热议问题