在 Visual Studio 2010 和 Excel 中恢复没有 VSTO 的应用程序
如何恢复我被调用的全局应用程序 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这就是所谓的全球。这是 VSTO 构建的一些奇怪的伪全局构造。
它使得代码看起来很简单;
yes, it is called global. it is some weird pseudo global construct build by VSTO.
it makes for simple looking code like this ;