to the best of my knowledge you can only change it based on the Hourglass prompt you have set. In other words you use the DoCmd.Hourglass True and DoCmd.Hourglass False statements
if this is what you want you can create two functions in a new Module, and then call which one you want from the MouseMove Event for each control.
= ChgCursorHourGlassOn()
or
= ChgCursorHourGlassOff()
Function ChgCursorHourGlassOn()
DoCmd.Hourglass True
End Function
Function ChgCursorHourGlassOff()
DoCmd.Hourglass False
End Function
to the best of my knowledge, the only option you have available in Access is the default setting for the Window's Wait cursor that you have set in your Window's Options. Therefore you can only change to that. There might be some API calls out there that could do the trick, but I haven't researched them.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.