How can I use JavaScript within an Excel macro?

前端 未结 4 842
说谎
说谎 2020-12-02 08:52

There’s a really cool diff class hosted by Google here:

http://code.google.com/p/google-diff-match-patch/

I’ve used it before on a few web sites, but now I n

4条回答
  •  旧巷少年郎
    2020-12-02 09:13

    Here's another option to consider, though I'm not by any means stating its the best one.

    • Insure that the Python version compiles in IronPython. (There shouldn't be any problems here, or only a small amount of porting at most.)
    • Create an Excel add-in library using C# and reference IronPython from it.
    • Wrap the necessary functionality in your C# Excel add-in.

提交回复
热议问题