Help! How to change mouse icon into crisscross?

  • Thread starter Thread starter JM
  • Start date Start date
Place the code from this link into a module.
http://www.mvps.org/access/api/api0044.htm

To call this code, use something similar to:

Private Sub Label24_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)
MouseCursor (IDC_HAND)
End Sub

This will change the cursor to a hand when over the label, Label24. Use the
appropriate constant from the module for the cursor you want.
 
Back
Top