From what I understand the MouseMove event fires every time the mouse moves; that is every time the x,y coordinate of the pointer is changed. Because of this, I don't believe there is a way to limit the messages/sec that are fired by the event as this is simply determined by how often you move the mouse. What I would suggest is if there are only certain times you want the move event to fire, you could add and remove your event handler at these times. You are more than welcome to continue searching for a method to implement your desired functionality, and if you do I would be very interested to see it.
Here is the MSDN article on the MouseMove event, which is probably a good place to start looking. Good luck!