View Single Post

  #2 (permalink)  
Old 02-04-2006
Wilfried Wilfried is offline
Senior Member
Black Belt
 
Join Date: Nov 2004
Posts: 2,122
Hi,

Yes you can set the Note or so when the mouse move over it. To know when the mouse move over it you have to install an event handler in OnMouseMove event.

You have to keep an array of all the xy positions of all the pushpins, and in MouseMove you can check if you are nearby or over one of the pushpins. If so you take according action.

Note that you have to optimize this code for speed as thsi event handler is called thousands of times a second.
Reply With Quote