Using Python to program MS Office macros?

前端 未结 6 728
走了就别回头了
走了就别回头了 2020-12-04 11:28

I\'ve recently taken it as a project to teach myself how to program in Python. Overall, I must say that I\'m impressed with it.

In the past I\'ve typically stuck to

6条回答
  •  情书的邮戳
    2020-12-04 11:53

    Or have a look at IronPython. IPy is a native .NET implementation of Python 2.6, you can find it at http://www.codeplex.com/ironpython.

    We have used it for several projects. You can use it "from the outside" using COM or - as we do - write a Excel AddIn with a ScriptHost, which calls out to IronPython code giving you an environment similar to VBA.

    Being a .NET dll, IPy integrates extremely well into the modern Windows .NET stack.

提交回复
热议问题