I used to be able to change the cursor to a hand shape in Access XP by using the code below in the On Mouse Move event property:
Private Sub Label16_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Call MouseCursor(32649) 'Display hand cursor
End Sub
This no longer works. Is there an updated method for doign this in Access 2010?
Private Sub Label16_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Call MouseCursor(32649) 'Display hand cursor
End Sub
This no longer works. Is there an updated method for doign this in Access 2010?