- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个用 C# 编写的进程内 COM 服务器(使用 .NET Framework 3.5),它基于此示例引发 COM 事件: http://msdn.microsoft.com/en-us/library/dd8bf0x3(v=vs.90).aspx
Excel VBA 是我的 COM 服务器最常用的客户端。我发现当我在 Excel 处于编辑模式时引发 COM 事件(例如,正在编辑一个单元格)时,事件“丢失”了。这意味着,永远不会调用 VBA 事件处理程序(即使在 Excel 编辑模式完成后),并且对 C# 事件委托(delegate)的调用会通过并静默失败,不会引发任何异常。有谁知道如何在我的 COM 服务器上检测到这种情况?或者更好的办法是让事件委托(delegate)调用阻塞,直到 Excel 退出编辑模式?
我试过:
由于没有迹象表明客户端未引发该事件,因此我无法在我的代码中处理这种情况。
这是一个简单的测试用例。 C# COM 服务器:
namespace ComServerTest
{
public delegate void EventOneDelegate();
// Interface
[Guid("2B2C1A74-248D-48B0-ACB0-3EE94223BDD3"), Description("ManagerClass interface")]
[InterfaceType(ComInterfaceType.InterfaceIsDual)]
[ComVisible(true)]
public interface IManagerClass
{
[DispId(1), Description("Describes MethodAAA")]
String MethodAAA(String strValue);
[DispId(2), Description("Start thread work")]
String StartThreadWork(String strIn);
[DispId(3), Description("Stop thread work")]
String StopThreadWork(String strIn);
}
[Guid("596AEB63-33C1-4CFD-8C9F-5BEF17D4C7AC"), Description("Manager events interface")]
[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
[ComVisible(true)]
public interface ManagerEvents
{
[DispId(1), Description("Event one")]
void EventOne();
}
[Guid("4D0A42CB-A950-4422-A8F0-3A714EBA3EC7"), Description("ManagerClass implementation")]
[ComVisible(true), ClassInterface(ClassInterfaceType.None)]
[ComSourceInterfaces(typeof(ManagerEvents))]
public class ManagerClass : IManagerClass
{
private event EventOneDelegate EventOne;
private System.Threading.Thread m_workerThread;
private bool m_doWork;
private System.Windows.Threading.Dispatcher MainThreadDispatcher = null;
public ManagerClass()
{
// Assumes this is created on the main thread
MainThreadDispatcher = System.Windows.Threading.Dispatcher.CurrentDispatcher;
m_doWork = false;
m_workerThread = new System.Threading.Thread(DoThreadWork);
}
// Simple thread that raises an event every few seconds
private void DoThreadWork()
{
DateTime dtStart = DateTime.Now;
TimeSpan fiveSecs = new TimeSpan(0, 0, 5);
while (m_doWork)
{
if ((DateTime.Now - dtStart) > fiveSecs)
{
System.Diagnostics.Debug.Print("Raising event...");
try
{
if (EventOne != null)
{
// Tried calling the event delegate directly
EventOne();
// Tried synchronously invoking the event delegate from the main thread's dispatcher
MainThreadDispatcher.Invoke(EventOne, new object[] { });
// Tried asynchronously invoking the event delegate from the main thread's dispatcher
System.Windows.Threading.DispatcherOperation dispOp = MainThreadDispatcher.BeginInvoke(EventOne, new object[] { });
// Tried synchronously invoking the event delegate from the worker thread's dispatcher.
// Asynchronously invoking the event delegate from the worker thread's dispatcher did not work regardless of whether Excel is in edit mode or not.
System.Windows.Threading.Dispatcher.CurrentDispatcher.Invoke(EventOne, new object[] { });
}
}
catch (System.Exception ex)
{
// No exceptions were thrown when attempting to raise the event when Excel is in edit mode
System.Diagnostics.Debug.Print(ex.ToString());
}
dtStart = DateTime.Now;
}
}
}
// Method should be called from the main thread
[ComVisible(true), Description("Implements MethodAAA")]
public String MethodAAA(String strValue)
{
if (EventOne != null)
{
try
{
// Tried calling the event delegate directly
EventOne();
// Tried asynchronously invoking the event delegate from the main thread's dispatcher
System.Windows.Threading.DispatcherOperation dispOp = System.Windows.Threading.Dispatcher.CurrentDispatcher.BeginInvoke(EventOne, new object[] { });
// Tried synchronously invoking the event delegate from the main thread's dispatcher
System.Windows.Threading.Dispatcher.CurrentDispatcher.Invoke(EventOne, new object[] { });
}
catch (System.Exception ex)
{
// No exceptions were thrown when attempting to raise the event when Excel is in edit mode
System.Diagnostics.Debug.Print(ex.ToString());
}
return "";
}
return "";
}
[ComVisible(true), Description("Start thread work")]
public String StartThreadWork(String strIn)
{
m_doWork = true;
m_workerThread.Start();
return "";
}
[ComVisible(true), Description("Stop thread work")]
public String StopThreadWork(String strIn)
{
m_doWork = false;
m_workerThread.Join();
return "";
}
}
}
我使用 regasm 注册它:
%SystemRoot%\Microsoft.NET\Framework\v2.0.50727\regasm /codebase ComServerTest.dll /tlb:ComServerTest.tlb
Excel VBA 客户端代码:
Public WithEvents managerObj As ComServerTest.ManagerClass
Public g_nCounter As Long
Sub TestEventsFromWorkerThread()
Set managerObj = New ComServerTest.ManagerClass
Dim dtStart As Date
dtStart = DateTime.Now
g_nCounter = 0
Debug.Print "Start"
' Starts the worker thread which will raise the EventOne event every few seconds
managerObj.StartThreadWork ""
Do While True
DoEvents
' Loop for 20 secs
If ((DateTime.Now - dtStart) * 24 * 60 * 60) > 20 Then
' Stops the worker thread
managerObj.StopThreadWork ""
Exit Do
End If
Loop
Debug.Print "Done"
End Sub
Sub TestEventFromMainThread()
Set managerObj = New ComServerTest.ManagerClass
Debug.Print "Start"
' This call will raise the EventOne event
managerObj.MethodAAA ""
Debug.Print "Done"
End Sub
' EventOne handler
Private Sub managerObj_EventOne()
Debug.Print "EventOne " & g_nCounter
g_nCounter = g_nCounter + 1
End Sub
编辑 27/11/2014 - 我一直在对此进行更多调查。
引发 COM 事件的 C++ MFC 自动化服务器也会出现此问题。如果我在 Excel 处于编辑模式时从主线程引发 COM 事件,则永远不会调用事件处理程序。服务器上不会抛出任何错误或异常,类似于我的 C# COM 服务器。 但是,如果我使用全局接口(interface)表将事件接收器接口(interface)从主线程返回编码到主线程,然后调用事件 - 它会在 Excel 运行时阻塞在编辑模式。 (我还使用 COleMessageFilter 来禁用繁忙的对话框和不响应的对话框,否则我会收到异常:RPC_E_CANTCALLOUT_INEXTERNALCALL 在消息过滤器内部调用是非法的。)
(如果您想查看 MFC 自动化代码,请告诉我,为简洁起见,我将跳过它)
知道这一点后,我尝试在我的 C# COM 服务器上执行相同的操作。我可以实例化全局接口(interface)表(使用来自 pinvoke.net 的定义)和消息过滤器(使用来自 MSDN 的 IOleMessageFilter 定义)。但是,当 Excel 处于编辑模式时,该事件仍然会“丢失”并且不会阻止。
以下是我修改 C# COM 服务器的方式:
namespace ComServerTest
{
// Global Interface Table definition from pinvoke.net
[
ComImport,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
Guid("00000146-0000-0000-C000-000000000046")
]
interface IGlobalInterfaceTable
{
uint RegisterInterfaceInGlobal(
[MarshalAs(UnmanagedType.IUnknown)] object pUnk,
[In] ref Guid riid);
void RevokeInterfaceFromGlobal(uint dwCookie);
[return: MarshalAs(UnmanagedType.IUnknown)]
object GetInterfaceFromGlobal(uint dwCookie, [In] ref Guid riid);
}
[
ComImport,
Guid("00000323-0000-0000-C000-000000000046") // CLSID_StdGlobalInterfaceTable
]
class StdGlobalInterfaceTable /* : IGlobalInterfaceTable */
{
}
public class ManagerClass : IManagerClass
{
//...skipped code already mentioned in earlier sample above...
//...also skipped the message filter code for brevity...
private Guid IID_IDispatch = new Guid("00020400-0000-0000-C000-000000000046");
private IGlobalInterfaceTable m_GIT = null;
public ManagerClass()
{
//...skipped code already mentioned in earlier sample above...
m_GIT = (IGlobalInterfaceTable)new StdGlobalInterfaceTable();
}
public void FireEventOne()
{
// Using the GIT to marshal the (event?) interface from the main thread back to the main thread (like the MFC Automation server).
// Should we be marshalling the ManagerEvents interface pointer instead? How do we get at it?
uint uCookie = m_GIT.RegisterInterfaceInGlobal(this, ref IID_IDispatch);
ManagerClass mgr = (ManagerClass)m_GIT.GetInterfaceFromGlobal(uCookie, ref IID_IDispatch);
mgr.EventOne(); // when Excel is in edit mode, event handler is never called and does not block, event is "lost"
m_GIT.RevokeInterfaceFromGlobal(uCookie);
}
}
}
我希望我的 C# COM 服务器以类似于 MFC 自动化服务器的方式运行。这可能吗?我想我应该在 GIT 中注册 ManagerEvents 接口(interface)指针,但我不知道如何获取它?我尝试使用 Marshal.GetComInterfaceForObject(this, typeof(ManagerEvents)) 但这只会引发异常:System.InvalidCastException: Specified cast is not valid。
最佳答案
你应该使用回调方法而不是事件
1- 改变界面:
// Interface
[Guid("2B2C1A74-248D-48B0-ACB0-3EE94223BDD3"), Description("ManagerClass interface")]
[InterfaceType(ComInterfaceType.InterfaceIsDual)]
[ComVisible(true)]
public interface IManagerClass
{
[DispId(1), Description("Describes MethodAAA")]
String MethodAAA(String strValue);
[DispId(2), Description("Start thread work")]
String StartThreadWork(String strIn, [MarshalAs(UnmanagedType.FunctionPtr)] ref Action callback);
[DispId(3), Description("Stop thread work")]
String StopThreadWork(String strIn);
}
2- 添加一个字段来保存回调方法并更改调用者方法:
[ComVisible(false)]
Action callBack;
// Simple thread that raises an event every few seconds
private void DoThreadWork()
{
DateTime dtStart = DateTime.Now;
TimeSpan fiveSecs = new TimeSpan(0, 0, 5);
while (m_doWork)
{
if ((DateTime.Now - dtStart) > fiveSecs)
{
System.Diagnostics.Debug.Print("Raising event...");
try
{
if (callBack != null)
callBack();
}
catch (System.Exception ex)
{
// No exceptions were thrown when attempting to raise the event when Excel is in edit mode
System.Diagnostics.Debug.Print(ex.ToString());
}
dtStart = DateTime.Now;
}
}
}
[ComVisible(true), Description("Start thread work")]
public String StartThreadWork(String strIn, [MarshalAs(UnmanagedType.FunctionPtr)] ref Action callback)
{
this.callBack = callback;
m_doWork = true;
m_workerThread.Start();
return "";
}
3- 向您的 VBA 添加一个模块(因为 AddressOf 仅适用于模块 SUB)并将此方法放入该模块
Dim g_nCounter As Integer
Public Sub callback()
Debug.Print "EventOne " & g_nCounter
g_nCounter = g_nCounter + 1
End Sub
4- 将这个新创建的 SUB 的地址传递给您的托管方法:
managerObj.StartThreadWork "", AddressOf Module1.callback
关于C# COM 服务器事件 “lost” 在 Excel 处于编辑模式时引发事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23798443/
我想制作一个引用另一个 excel 文件中的单元格的公式。我已经弄清楚了,如下所示: ='C:\Users\17\Desktop\[JAN-11 2011.xlsx]1'!$H$44 但由于此工作表中
有谁知道是否可以在 Excel 中生成缺少地址门牌号的报告? 例如,我们在 Apple St (no.5, 9, 11) 有三个地址记录,是否可以生成一个报告: 列出工作簿中每条街道的所有记录街道编号
这个问题已经有答案了: VBA auto hide ribbon in Excel 2013 (7 个回答) 已关闭 4 年前。 我试图在打开工作文件时隐藏我的丝带。 我已点击以下链接,但不断收到运行
我编写了一个 VBA 程序来删除元音。我无法从 excel 调用该函数。我收到 #NAME 错误。下面的代码 Function REMOVEVOWELS(Txt) As String 'Removes
嗨,我正在尝试在 MS excel 中应用一个函数(正确函数) 但是当我编写这个函数并使用填充句柄将其复制到其他单元格时,我在所有复制的单元格中得到相同的输出。 但是当我点击单元格时,引用是好的。但结
假设我有一个格式如下的电子表格: Sheet 1 | Sheet 2 name email | name e
我正在尝试简化财务报告中的数据输入,因此我尝试使用 Excel Visual Basic 制作表格。 到目前为止我做了2个用户表单,以后我会做5个。我做了用户表单,以便数据输入运算符(operator
我需要对单元格公式而不是单元格内容执行 Mid 或 Find。 如果我的单元格公式是: =[功能](Arg1, Arg2, Arg3) 我需要能够将 Arg2 提取到另一个单元格。 如果不使用 VBA
我想用 VBA 管理嵌入在另一个 Excel 文件中的 Excel 文件。我可以使用 .docx 文档找到很多结果,但我坚持使用 .xlsx 文档。 我最后一次尝试是使用 OLE 对象,但停留在“Sa
我最近一直在尝试使用 perl 和一些模块来读取 Excel 文件,尤其是单元格的格式。 例如,我写了一段使用 ParseExcel 模块读取单元格背景颜色的 perl 代码。然而,在测试时我注意到对
我目前正在使用 Maatwebsite 的 Excel 包,并且能够很好地生成一个包含我想要的列和值的表格,但我希望能够生成表格,其他表格位于单个 Excel 工作表的下方。可能吗? 上面附上的屏幕截
我需要以下方面的指导。我有一个包含 150000 条记录的文件 (excel)。收到另一个包含 5000-6000 条记录的 excel 文件,需要根据第二个文件中信息的某些条件删除该行。 我使用字典
我有我认为的标准公式,根据我使用的 Excel 版本、Excel 365 或 Excel 2019 的不同,它的行为会有所不同 =IF(F5=$M$1;IFERROR(IF(AND(IFERROR(F
信息: 我有一个名为 Demo.xlsm 的 Excel 文件 此文件包含一个名为 UserForm1 的用户表单,该用户表单会在打开文件时自动加载。 打开文件时,名为 Demo.xlsm 的工作簿也
我在A Excel工作表中有一个列,其值是1 1 1 2 2 2 3 3 3 4 4 4....,在B Excel工作表中有另一列,其值1 2 4 ....,什么我想要的是从 B 读取值并查看它们是否
所以,我有这个问题,我想通过使用 OR 函数检查调整列的条件来找到列的平均值,我尝试将 OR 放入 AverageIf 函数,失败,还尝试了“Average(IF( OR("再次不是正确的返回。认为这
假设我想要这种类型的formula = SUM(startcell:endcell)的答案,但是startcell和endcell组件发生了变化。 因此,我希望能够使用 和 中的任何值,而不是直接在公
我正在寻找一个简单的 Excel 宏,它可以根据单元格中的特定数字/值将行从一张工作表复制到 Excel 中的另一张工作表。我有两张纸。一个称为“master”,另一个表称为“top10”。 这是数据
我正在尝试调用另一个工作簿中的 Excel 宏。它是一个特定于工作表的宏,但 Microsoft 文档和网上研究给出的语法仅提供了一种仅通过工作簿访问宏的方法。该语法是: Application.Ru
我检查了很多不同的帖子,但似乎找不到我正在寻找的确切代码。另外,我以前从未使用过 VBA,因此我尝试从其他帖子中获取代码并输入我的信息以使其正常工作。还没有运气。在工作中,我们有一个 Excel 薪资
我是一名优秀的程序员,十分优秀!