gpt4 book ai didi

.net - 以编程方式创建 Excel 实例并加载所有加载项

转载 作者:行者123 更新时间:2023-12-02 23:09:01 25 4
gpt4 key购买 nike

我正在 .NET 应用程序(WPF,如果重要的话)中创建 Microsoft Excel 的实例,并将其嵌入其中,如下所示:

        var excelType = Type.GetTypeFromProgID("Excel.Application");
var excelObj = Activator.CreateInstance(excelType);
excelType.InvokeMember("Visible", BindingFlags.SetProperty, null, excelObj, new object[] { true }, ComCulture);
var excelHwnd = new IntPtr((int)excelType.InvokeMember("Hwnd", BindingFlags.GetProperty, null, excelObj, new object[0], ComCulture));
var managedWindowHwnd = new WindowInteropHelper(Application.Current.MainWindow).Handle;
SetParent(excelHwnd, managedWindowHwnd);
MoveWindow(excelHwnd, 0, 0, Convert.ToInt32(Width), Convert.ToInt32(Height), true);

除 Excel 之外的所有工作都不会加载已安装的加载项。如果我通过开始菜单运行 Excel,它会加载加载项。

我想我需要向 Excel 指定一些参数才能启用加载项加载。但我不知道什么/如何...

最佳答案

您可以使用互操作手动执行此操作,您可以引用我的帖子 Get the excel cell address from a UDF获取 Excel 的 Application 对象的句柄。拥有应用程序后,您可以通过循环 application.AddIns 和 application.ComAddIns 并将每个项目的安装/连接属性设置为 true 来手动启用插件

关于.net - 以编程方式创建 Excel 实例并加载所有加载项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10312511/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com