How do I make check boxes in an ms access report have a hyperlink hand on hover?
If cc.ControlType = acCheckBox Then
'cc.DisplayAsHyperlink = acDisplayAsHyperlinkAlways
' cc.IsHyperlink = True
'cc.CursorOnHover = acCursorOnHoverHyperlinkHand
End If
But I get this error:
CursorOnHover is a property for CommandButton objects. A simple work-around would be to place a transparent button behind your check boxes and set the CursorOnHover property to acHyperlink hand from the Property Sheet.