The DblClick event worked ok in 3.x. But in 4.7 it seems to cause problems.
I noticed that the parameter list changed from 3.x to 4.7. Even accounting for that, if the event is present in code -- even if it is the only piece of code -- Access 2010 complains that it conflicts with other events, even if those events are not coded. Here's a typical message: "The expression MouseMove you entered as the event property setting produced the following error: Procedure declaration does not match description of event or procedure having the same name." I'm not trapping for a MouseMove event.
Then additional conflicts are reported complaining of the same issue with other events that I am not using. I am not trapping any of the events complained about.
Here is the event code:
Private Sub iGrid0_DblClick(ByRef Button As Integer, ByRef Shift As Integer, ByVal x As Single, ByVal y As Single, ByVal lRow As Long, ByVal lCol As Long, ByRef eAction As EDblClickAction)
' code here
End Sub
I even tried changing the data type of eAction to Long and Integer, but it produced no different result.
I look forward to a prompt resolution. This is a killer for me.
Thanks.