Hello,
Sorry for this so very late post, but I came with a solution for this, in VB and in C#:
What's important though is that it's not a mapwinGIS problem. It's about windows event handlers.
In VB, the event handling subs (such as "control_MousMoveEvent") usually have their handles associated automaticallly, like in this line of code:
Private Sub AxMap1_MouseDownEvent(ByVal sender As Object, ByVal e As AxMapWinGIS._DMapEvents_MouseDownEvent) Handles AxMap1.MouseDownEvent
You see, the "Handles..." takes care of the handling and you don't have to bother with assigning a handle to the event. In your code, there is no mention to that handle. So the author wrote the code for the handle himself. This MapEvents variable was probably declared somewhere else in his project, so it's not clear what it means. But it's surely related to windows and not to MapWinGIS, as I'll show in the C# example that follows.
The easiest solution in this case would be to put the "Handles AxMap1..." in your code as shown above and delete the line referring to MapEvents.
In C#, you create the event handling method and associate a mouse handler to it, as shown in the following code just after the main form declaration, at the beginning of the class declaration:
public fmMain()
{
InitializeComponent();
...
AxMap1.MouseDownEvent += new AxMapWinGIS._DMapEvents_MouseDownEventHandler(AxMap1_MouseDown);
With this line, I assign a handler to the method "AxMap1_MouseDown", which is a customized MouseDownEvent method where I put the code to do whatever I want to do when the user clicks the mouse...
Of course, the "axMap.SendMouseMove = True" applies, in both languages. And you can also set it to "TRUE" in design time, as it's a property of the axMap control.
Et voilá, it works!! At least for me, both in VB and C#.
Hope I was of some help... and since I came upon this thread over the same "MapEvents" issue, I hope it gives some answers to others who face the same problem, particularly newbies as myself, relying on the MapWinGIS documentation code to reduce the learning curve...
Regards,
PGSCosta