How to run a hosted ironpython 1.1 from an Excel add-in? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T23:21:19Zhttp://stackoverflow.com/feeds/question/819727http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/819727/how-to-run-a-hosted-ironpython-1-1-from-an-excel-add-in0How to run a hosted ironpython 1.1 from an Excel add-in?Mads2009-05-04T11:34:21Z2009-05-11T09:10:56Z
<p>I am writing an Excel add-in that hosts IronPython 1.1 and I want to
provide the Excel.Application COM object to the PythonEngine instance.</p>
<p>My C# can access members of the COM object just fine. However, when my
IronPython script accesses members of the COM object, I get a
"System.ArgumentException: Object of type 'System.Int32' cannot be
converted to type 'System.UInt32&'."</p>
<p>Here is my C# code hosting IronPython 1.1:</p>
<pre><code>public void ExecuteFile(string path) {
// see if COM object works
Debug.WriteLine(Globals.ThisAddIn.Application.ActiveWindow.Caption);
engine.Globals.Add("excel", Globals.ThisAddIn.Application);
try
{
engine.ExecuteFile(path);
}
catch (Exception ex)
{
Debug.WriteLine(ex);
}
}
</code></pre>
<p>and here is my IronPython test script:</p>
<p><code>excel.ActiveSheet.Range['A1'].Value2 = 42</code> // throws exception mentioned above</p>
http://stackoverflow.com/questions/819727/how-to-run-a-hosted-ironpython-1-1-from-an-excel-add-in/820803#8208031Answer by Alex Martelli for How to run a hosted ironpython 1.1 from an Excel add-in?Alex Martelli2009-05-04T16:27:24Z2009-05-04T16:27:24Z<p>I believe that to set .Value you need to "index" it with the datatype; it's more convenient to set .Value2 instead (it can be set directly). So what happens if you use .Value2 instead of .Value in that Python assignment?</p>
http://stackoverflow.com/questions/819727/how-to-run-a-hosted-ironpython-1-1-from-an-excel-add-in/847309#8473090Answer by Mads for How to run a hosted ironpython 1.1 from an Excel add-in?Mads2009-05-11T09:10:56Z2009-05-11T09:10:56Z<p>A good article with explanations and a solution is here:</p>
<p><a href="http://codeidol.com/csharp/c-sharp-in-office/Working-with-Excel-Objects/Special-Excel-Issues/" rel="nofollow">http://codeidol.com/csharp/c-sharp-in-office/Working-with-Excel-Objects/Special-Excel-Issues/</a></p>
<p>Basically, I opted for disabling the VSTO proxy which wraps the Excel COM object. It can be done with this line in AssemblyInfo.cs:</p>
<p>[assembly: ExcelLocale1033(false)]</p>