How to run a hosted ironpython 1.1 from an Excel add-in? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T23:21:19Z http://stackoverflow.com/feeds/question/819727 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/819727/how-to-run-a-hosted-ironpython-1-1-from-an-excel-add-in 0 How to run a hosted ironpython 1.1 from an Excel add-in? Mads 2009-05-04T11:34:21Z 2009-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&amp;'."</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#820803 1 Answer by Alex Martelli for How to run a hosted ironpython 1.1 from an Excel add-in? Alex Martelli 2009-05-04T16:27:24Z 2009-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#847309 0 Answer by Mads for How to run a hosted ironpython 1.1 from an Excel add-in? Mads 2009-05-11T09:10:56Z 2009-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>