在 Visual Studio 2010 和 Excel 中恢复没有 VSTO 的应用程序

发布于 2024-11-09 04:30:06 字数 300 浏览 0 评论 0原文

如何恢复我被调用的全局应用程序 Microsoft Office c# 下的用户定义函数,无需 VSTO。

我正在使用 XLV,它可以将 excel UDF 写入为 .xll(对于 Excel 为 .dll) 没有 Visual Studio Tools for Office (VSTO)。

我的主要问题是如何恢复当前的应用程序, 当前工作簿 当前工作表, 调用单元格。

在 VSTO 下,这在 app 全局变量下可用。

我确定其中一个全局变量中填充有指针 dll 的。

干杯!

K博士

How can I recover the global app i'm being called in for a
User Defined Function under Microsoft Office c# without VSTO.

I'm using XLV, which enables writing excel UDF's as .xll (.dlls for excell)
without Visual Studio Tools for Office (VSTO).

My main question is how to recover the current application,
current workbook
current worksheet,
invoking cell.

Under VSTO this is available under the app global variable.

I'm certain there is a global populated with a pointer in one of the
dll's.

Cheers!

dr.K

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

杯别 2024-11-16 04:30:06

是的,这就是所谓的全球。这是 VSTO 构建的一些奇怪的伪全局构造。
它使得代码看起来很简单;

    Excel . Application eA = Globals . ThisAddIn . Application;
    Excel . Workbook nWB=Globals . ThisAddIn . Application . ActiveWorkbook;
    Excel . Worksheet eS = eA . ActiveSheet;

yes, it is called global. it is some weird pseudo global construct build by VSTO.
it makes for simple looking code like this ;

    Excel . Application eA = Globals . ThisAddIn . Application;
    Excel . Workbook nWB=Globals . ThisAddIn . Application . ActiveWorkbook;
    Excel . Worksheet eS = eA . ActiveSheet;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文