Mouse Pointers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have some label-box hyperlinks on a form and I want to change the mouse pointer when I do MoseMove onto the hyperlink. The default mouse ponters in Access are limited (hourglass, vertical and horizontal arrows, I-Bar). What I'd like to use is the "Hand" pointer which is common to DHTML ("Cursor: Hand"). Is there a library of mouse pointers available to Access programmers that can be integrated into VBA? Or is there a way to integrate the hand/finger pointer into VBA? Thx for any advise.
 
CFitz said:
I have some label-box hyperlinks on a form and I want to change the
mouse pointer when I do MoseMove onto the hyperlink. The default
mouse ponters in Access are limited (hourglass, vertical and
horizontal arrows, I-Bar). What I'd like to use is the "Hand"
pointer which is common to DHTML ("Cursor: Hand"). Is there a
library of mouse pointers available to Access programmers that can be
integrated into VBA? Or is there a way to integrate the hand/finger
pointer into VBA? Thx for any advise.


Here's a link to a page with code for calling the Windows API to set the
mouse cursor:

http://www.mvps.org/access/api/api0044.htm
 
Back
Top