>Just starting to get into IronPython and have been poking around for the last few days; but I'm hoping someone can help. Basically, I want to take some python (IronPython) code, compile it to a dll (or xll?) and have it function like an add-in for excel. So, I could code functions in python and just call them as worksheet functions in excel. This is greatly preferable to writing VBA!!
There are a couple of solutions. The first is ExcelDNA, which creates an XLL extension object based on a .NET class library. The second solution is Add-In express. Using the Add-in Express solution you can create any type of excel extension that will call into your Python class library. Though you might need to do some work to get everything to work out properly. I have used both and I like both.
Christian _______________________________________________ Users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
