How to run Python script in Excel/vba environment

2008-11-06 Thread Patrick ARNOULD
Hi, I would like to resuse a Python script in Excel2003 environment, so I try to develop a vba function to call this Python script function. I found the following example but unfortunately the 'python' language is not recognize in my excel environment. Global sc As New MSScriptControl.ScriptCo

AW: How to run Python script in Excel/vba environment

2008-11-06 Thread Frey, Peter
What about using XMLRPC and run the Python code in an Environnment that does support Python (like Zope or an other webbased framework supporting XMLRPC)? There are good .NET clients that can be used for Excel Extensions in VB.net or C# -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED]

Python from Excel

2008-11-06 Thread Bruce Peterson
The easiest way to do this is to covert your python code to be a COM server -- exposing the attributes and methods you want to call from Excel. Then link the COM object to Excel using VBA. see Hammon & Robinson Python Programming on Win32. Bruce At 12:00 PM 11/6/2008, you wrote: Hi, I would