It’s been yonks since I’ve done any VB6…
I need to take control of the mouse pointer and move it smoothly between two points.
Is the best way to do this a combination of GetCursorPos, SetCursorPos and a timer or two, or is there a better way?
Thanks for any help.
Using
SetCursorPoswith a timer to move the cursor between two points sound like the most sensible way to me. (Why would you need to useGetCursorPoseven?)Were you hoping for another solution in particular? You’re certainly not going to be able to perform this task without the WinAPI, but there may be another function that does what you want.