ExcelDNA在运行时动态注册UDF

时间:2018-08-25 15:16:26

标签: c# excel user-defined-functions excel-interop excel-dna

我的目标是在运行时在ExcelDNA加载项中动态构建和注册Excel用户定义的函数。

Here is an example由ExcelDNA作者提供,它着重介绍了如何从简单的C#代码字符串编译UDF。

如您所见,此代码是通过在AddIn的RegisterMyClass方法内调用AutoOpen来执行的;而且一切正常。

但是,如果将RegisterMyClass方法移至(例如)功能区按钮的操作方法中,则动态UDF的注册将不起作用,并导致以下错误:

Registration [Error] xlfRegister call failed for function or command: 'MyDynamicAdd'

实际上,似乎所有对ExcelIntegration.RegisterMethods的调用都在上述错误消息中失败-除非从AutoOpen方法中调用它们。

我的问题是:

  

如何在运行时动态注册新的UDF并通过单击功能区按钮来触发?

出于完整性考虑,请参考Gist代码:

<DnaLibrary Name="ExcelDna Test Dynamic Method" Language="C#">
<Reference Name="System.Windows.Forms" />
    <![CDATA[
    using System;
    using System.CodeDom.Compiler;
    using System.Collections.Generic;
    using System.IO;
    using System.Reflection;
    using System.Windows.Forms;
    using Microsoft.CSharp;
    using ExcelDna.Integration;

    public class Test : IExcelAddIn
    {
        // Just to test that we are loaded.
        public static double MyAdd(double d1, double d2)
        {
            return d1 + d2;
        }

        public void AutoOpen()
        {
            RegisterMyClass();
        }

        public void AutoClose()
        {
        }

        private void RegisterMyClass()
        {
            string code = 
                @"
                public class Script 
                { 
                    public static double MyDynamicAdd(double d1, double d2)
                    {
                        return d1 + d2;
                    }
                }";

        CompilerParameters cp = new CompilerParameters();
        cp.GenerateExecutable = false;
        cp.GenerateInMemory = true;
        cp.TreatWarningsAsErrors = false;
        cp.ReferencedAssemblies.Add("System.dll"); //, "System.Windows.Forms.dll", "ExcelDna.Integration.dll" );
        CSharpCodeProvider provider = new CSharpCodeProvider();
        CompilerResults cr = provider.CompileAssemblyFromSource(cp, new string[] { code });
        if (!cr.Errors.HasErrors)
        {
            Assembly asm = cr.CompiledAssembly;
            Type[] types = asm.GetTypes();
            List<MethodInfo> methods = new List<MethodInfo>();

            // Get list of MethodInfo's from assembly for each method with ExcelFunction attribute
            foreach (Type type in types)
            {
                foreach (MethodInfo info in type.GetMethods(BindingFlags.Public | BindingFlags.Static))
                {
                    methods.Add(info);
                }
            }
            Integration.RegisterMethods(methods);
        }
        else
        {
            MessageBox.Show("Errors during compile!");
        }
    }
    }
]]>
</DnaLibrary>

1 个答案:

答案 0 :(得分:1)

您注册功能的代码必须在C API可用的上下文中。在功能区回调或任何其他COM事件处理程序中将无法使用。

切换到可以使用C API的宏上下文的一种方法是调用ExcelAsyncUtil.QueueAsMacro帮助程序,并在传入的委托中运行注册代码。