I have a text box that displays the cursor coordinates for the form mousemove event:
The form occupies the whole screen area. The screen width is 1024 pixels but I notice that if the mouse is moved very quickly off the edge of the form then the textbox display doesnt keep up. For example the last x value displayed can be as low as 900 depending on how fast I move the mouse sideways.
Can someone explain why this should happen??
Code:
Textbox1.Text = (Cursor.Position.X & " " & Cursor.Position.Y)
The form occupies the whole screen area. The screen width is 1024 pixels but I notice that if the mouse is moved very quickly off the edge of the form then the textbox display doesnt keep up. For example the last x value displayed can be as low as 900 depending on how fast I move the mouse sideways.
Can someone explain why this should happen??